erp-platform/api/src/Kurs.Platform.Application.Contracts/Contact/CityDto.cs

12 lines
288 B
C#
Raw Normal View History

using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.Contacts;
2025-06-27 07:15:36 +00:00
public class CityDto : AuditedEntityDto<Guid>
{
public string Code { get; set; }
2025-08-18 21:25:09 +00:00
public string Name { get; set; }
public string PlateCode { get; set; }
2025-10-03 11:35:52 +00:00
public string Country { get; set; }
}