using System; using Volo.Abp.Application.Dtos; namespace Kurs.Platform.Contacts; public class DistrictDto : AuditedEntityDto { public string Name { get; set; } public string CityCode { get; set; } public string Township { get; set; } public string Street { get; set; } public string ZipCode { get; set; } }