10 lines
274 B
C#
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; }
|
|
} |