sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/DistrictDto.cs

13 lines
296 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.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; }
}