Files
mixtape/zero.Core/Entities/Language.cs
T
2020-05-04 16:00:39 +02:00

20 lines
491 B
C#

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