2025-06-18 10:29:25 +00:00
|
|
|
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; }
|
2025-06-27 07:15:36 +00:00
|
|
|
public int PhoneCode { get; set; }
|
2025-06-18 10:29:25 +00:00
|
|
|
public string TaxLabel { get; set; }
|
|
|
|
|
public bool ZipRequired { get; set; }
|
|
|
|
|
public bool StateRequired { get; set; }
|
|
|
|
|
|
2025-06-27 07:15:36 +00:00
|
|
|
public List<CityDto> Cities { get; set; }
|
2025-06-18 10:29:25 +00:00
|
|
|
}
|