SyntaxFix
Write A Post
Hire A Developer
Questions
Those are automatic properties
Basically another way of writing a property with a backing field.
public class Genre { private string _name; public string Name { get => _name; set => _name = value; } }