Remove private setters to make Enumeration immutable. Otherwise, it's possible to change the property values. ```csharp public override string ToString() { Name = "Whatever"; return Name; } ``` ## Summary Remove private setters for public propertiespull/552/head