2025-08-18 21:25:09 +00:00
|
|
|
using System;
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Contacts;
|
|
|
|
|
|
|
|
|
|
public class DistrictDto : AuditedEntityDto<Guid>
|
|
|
|
|
{
|
2025-10-03 11:35:52 +00:00
|
|
|
public string Country { get; set; }
|
|
|
|
|
public string City { get; set; }
|
2025-08-19 10:19:31 +00:00
|
|
|
public string Name { get; set; }
|
2025-08-18 21:25:09 +00:00
|
|
|
public string Township { get; set; }
|
|
|
|
|
public string Street { get; set; }
|
|
|
|
|
public string ZipCode { get; set; }
|
|
|
|
|
}
|