Files
mixtape/zero.Core/Entities/Country.cs
T
2020-04-13 12:14:19 +02:00

19 lines
419 B
C#

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