19 lines
540 B
C#
19 lines
540 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Erp.Platform.Public;
|
|
|
|
public class CountryDto : AuditedEntityDto<Guid>
|
|
{
|
|
public string Code { get; set; }
|
|
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; }
|
|
}
|