2025-06-18 10:29:25 +00:00
|
|
|
using System;
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Contacts;
|
|
|
|
|
|
2025-06-27 07:15:36 +00:00
|
|
|
public class CityDto : AuditedEntityDto<Guid>
|
2025-06-18 10:29:25 +00:00
|
|
|
{
|
|
|
|
|
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; }
|
2025-06-18 10:29:25 +00:00
|
|
|
}
|