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

14 lines
368 B
C#
Raw Normal View History

2025-08-18 21:25:09 +00:00
using System;
using Volo.Abp.Application.Dtos;
2025-10-10 22:27:06 +00:00
namespace Kurs.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; }
public string Street { get; set; }
public string ZipCode { get; set; }
}