12 lines
292 B
C#
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; }
|
|
}
|