sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/CountryDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

17 lines
495 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 string TaxLabel { get; set; }
public bool ZipRequired { get; set; }
public bool StateRequired { get; set; }
public List<CityDto> Cities { get; set; }
}