namespace zero.Core.Entities
{
public class Country : DatabaseEntity, ILanguageAwareEntity
{
///
/// Preferred countries are displayed on top in lists
///
public bool IsPreferred { get; set; }
///
/// Country code (ISO 3166-1)
///
public string Code { get; set; }
///
public string LanguageId { get; set; }
}
}