namespace zero.Core.Entities
{
public class Language : ZeroEntity, IZeroDbConventions
{
///
/// Language code (ISO 3166-1)
///
public string Code { get; set; }
///
/// Whether this is the default language
///
public bool IsDefault { get; set; }
///
/// If this language is inherited it gets all missing properties from its parent
///
public string InheritedLanguageId { get; set; }
}
}