namespace zero.Localization; [RavenCollection("Countries")] public class Country : ZeroEntity { /// /// Preferred countries are displayed on top in lists /// public bool IsPreferred { get; set; } /// /// Country code (ISO 3166-1) /// public string Code { get; set; } }