public class Country { public static List<Country> CountryList = new List<Country> { new Country{Name = "US"}, new Country{Name = "Canada"}, new Country{Name = "Mexico"} }; public string Name { get; set; } }