namespace Model { public class Category { public int ID { get; set; } public string Name { get; set; } public string ShortName { get; set; } // The magical "All Products" category public static readonly Category All = new Category { ID = default(int), Name = "All Products" }; } }