erp-platform/api/src/Erp.Platform.Application.Contracts/Public/CountryDto.cs

20 lines
540 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
using System.Collections.Generic;
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Public;
public class CountryDto : AuditedEntityDto<Guid>
{
public string Code { get; set; }
public string Name { get; set; }
2025-08-19 10:19:31 +00:00
public string GroupName { get; set; }
public string Currency { get; set; }
2025-06-27 07:15:36 +00:00
public int PhoneCode { get; set; }
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-11-11 19:49:52 +00:00
}