using System; using Volo.Abp.Application.Dtos; namespace Kurs.Platform.Public; public class CityDto : AuditedEntityDto { public string Code { get; set; } public string Name { get; set; } public string PlateCode { get; set; } public string Country { get; set; } }