2026-02-24 20:44:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Platform.Public;
|
|
|
|
|
|
|
|
|
|
|
|
public class DistrictDto : AuditedEntityDto<Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Country { get; set; }
|
|
|
|
|
|
public string City { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string Township { get; set; }
|
2026-07-07 21:00:35 +00:00
|
|
|
|
public string PostalCode { get; set; }
|
2026-02-24 20:44:16 +00:00
|
|
|
|
}
|