2021-05-04 17:23:52 +02:00
|
|
|
namespace zero.Core.Entities
|
2020-04-13 12:14:19 +02:00
|
|
|
{
|
2021-05-04 17:23:52 +02:00
|
|
|
public class Country : ZeroEntity
|
2020-05-24 18:23:56 +02:00
|
|
|
{
|
2020-04-13 12:14:19 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Preferred countries are displayed on top in lists
|
|
|
|
|
/// </summary>
|
2021-05-04 17:23:52 +02:00
|
|
|
public bool IsPreferred { get; set; }
|
2020-04-13 12:14:19 +02:00
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Country code (ISO 3166-1)
|
|
|
|
|
/// </summary>
|
2021-05-04 17:23:52 +02:00
|
|
|
public string Code { get; set; }
|
2020-04-13 12:14:19 +02:00
|
|
|
}
|
|
|
|
|
}
|