sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/CountryDto.cs

21 lines
648 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
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; }
2026-02-24 20:44:16 +00:00
public string TaxLabel { get; set; }
public bool ZipRequired { get; set; }
public bool StateRequired { get; set; }
public List<CityDto> Cities { get; set; }
}