18 lines
505 B
C#
18 lines
505 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using Volo.Abp.Application.Dtos;
|
||
|
|
|
||
|
|
namespace Kurs.Platform.Contacts;
|
||
|
|
|
||
|
|
public class CountryDto : AuditedEntityDto<Guid>
|
||
|
|
{
|
||
|
|
public string Code { get; set; }
|
||
|
|
public string Name { get; set; }
|
||
|
|
public string CurrencyCode { get; set; }
|
||
|
|
public string PhoneCode { get; set; }
|
||
|
|
public string TaxLabel { get; set; }
|
||
|
|
public bool ZipRequired { get; set; }
|
||
|
|
public bool StateRequired { get; set; }
|
||
|
|
|
||
|
|
public List<StateDto> States { get; set; }
|
||
|
|
}
|