12 lines
258 B
C#
12 lines
258 B
C#
namespace zero.Backoffice.Modules.Countries;
|
|
|
|
public class CountryDisplay : DisplayModel<Country>
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public bool IsPreferred { get; set; }
|
|
|
|
public string Code { get; set; }
|
|
|
|
public string LanguageId { get; set; }
|
|
} |