14 lines
527 B
C#
14 lines
527 B
C#
namespace NetinaShop.Domain.Dtos.SmallDtos;
|
|
|
|
public class OrderDeliverySDto : BaseDto<OrderDeliverySDto, OrderDelivery>
|
|
{
|
|
public string Address { get; set; } = string.Empty;
|
|
public string PostalCode { get; set; } = string.Empty;
|
|
public string ReceiverPhoneNumber { get; set; } = string.Empty;
|
|
public string ReceiverFullName { get; set; } = string.Empty;
|
|
public string ShippingMethod { get; set; } = string.Empty;
|
|
public Guid OrderId { get; set; }
|
|
public Guid ShippingId { get; internal set; }
|
|
}
|
|
|