Files
KonSoft.Clean/modules/admin/src/KonSoft.Admin.Application.Contracts/Dtos/AddressDto.cs
2025-10-16 10:30:51 +08:00

10 lines
274 B
C#

namespace KonSoft.Admin.Dtos;
public class AddressDto
{
public string ContactName { get; set; }
public string ContactPhone { get; set; }
public string DetailAddress { get; set; }
public string City { get; set; }
public string District { get; set; }
}