erp-platform/api/src/Kurs.Platform.Application.Contracts/Contact/CityDto.cs
2025-08-19 00:25:09 +03:00

12 lines
No EOL
292 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.Contacts;
public class CityDto : AuditedEntityDto<Guid>
{
public string Code { get; set; }
public string Name { get; set; }
public string PlateCode { get; set; }
public string CountryCode { get; set; }
}