erp-platform/api/src/Kurs.Platform.Application.Contracts/Public/CityDto.cs
2025-10-11 01:27:06 +03:00

12 lines
No EOL
286 B
C#

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