sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/DistrictDto.cs
2026-07-08 00:00:35 +03:00

13 lines
339 B
C#

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; }
public string PostalCode { get; set; }
}