13 lines
334 B
C#
13 lines
334 B
C#
|
|
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; }
|
||
|
|
}
|