erp-platform/api/src/Erp.Platform.Application.Contracts/Public/DistrictDto.cs

13 lines
292 B
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using System;
2025-08-18 21:25:09 +00:00
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.Public;
2025-08-18 21:25:09 +00:00
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; }
2025-11-11 19:49:52 +00:00
}