erp-platform/api/src/Erp.Platform.Application.Contracts/Public/DistrictDto.cs
2025-11-20 10:07:31 +03:00

12 lines
292 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Erp.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; }
}