Files
mixtape/zero.Backoffice/Modules/Countries/CountryListModel.cs
T

13 lines
235 B
C#
Raw Normal View History

2021-11-22 14:29:22 +01:00
namespace zero.Backoffice.Modules;
2020-04-24 12:46:25 +02:00
2021-11-22 14:29:22 +01:00
public class CountryListModel : ListModel
2020-04-24 12:46:25 +02:00
{
2021-11-22 14:29:22 +01:00
public string Name { get; set; }
2020-04-24 12:46:25 +02:00
2021-11-22 14:29:22 +01:00
public bool IsActive { get; set; }
2020-04-24 12:46:25 +02:00
2021-11-22 14:29:22 +01:00
public bool IsPreferred { get; set; }
2020-04-24 12:46:25 +02:00
2021-11-22 14:29:22 +01:00
public string Code { get; set; }
2020-04-24 12:46:25 +02:00
}