2022-05-20 11:09:24 -07:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
namespace API.Dtos
|
|
|
|
{
|
|
|
|
public class CustomerBasketDto
|
|
|
|
{
|
|
|
|
[Required]
|
|
|
|
public string Id { get; set; }
|
|
|
|
public List<BasketItemDto> Items { get; set; }
|
2022-05-27 15:40:30 -07:00
|
|
|
public int? DeliveryMethodId { get; set; }
|
|
|
|
public string ClientSecret { get; set; }
|
|
|
|
public string PaymentItentId { get; set; }
|
2022-05-30 13:25:27 -07:00
|
|
|
|
|
|
|
public decimal ShippingPrice { get; set; }
|
2022-05-20 11:09:24 -07:00
|
|
|
}
|
|
|
|
}
|