sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/DistrictDto.cs
Sedat Öztürk 429227df1d Initial
2026-02-24 23:44:16 +03:00

12 lines
296 B
C#

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; }
}