using System; using Volo.Abp.Application.Dtos; namespace Erp.Platform.Public; public class DistrictDto : AuditedEntityDto { public string Country { get; set; } public string City { get; set; } public string Name { get; set; } public string Township { get; set; } }