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

13 lines
334 B
C#
Raw Normal View History

2025-08-18 21:25:09 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.Contacts;
public class DistrictDto : AuditedEntityDto<Guid>
{
public string Name { get; set; }
public string CityCode { get; set; }
public string Township { get; set; }
public string Street { get; set; }
public string ZipCode { get; set; }
}