sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/CountryDto.cs
2026-07-07 00:53:45 +03:00

20 lines
648 B
C#

using System.Collections.Generic;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.Public;
public class CountryDto : AuditedEntityDto<string>
{
public string Name { get; set; }
public string GroupName { get; set; }
public string Currency { get; set; }
public int PhoneCode { get; set; }
public int? PhoneNumberMinLength { get; set; }
public int? PhoneNumberMaxLength { get; set; }
public string? PhoneNumberFormat { get; set; }
public string TaxLabel { get; set; }
public bool ZipRequired { get; set; }
public bool StateRequired { get; set; }
public List<CityDto> Cities { get; set; }
}