Sky.Net/API/Dtos/CustomerBasketDto.cs
2022-05-30 13:25:27 -07:00

16 lines
428 B
C#

using System.ComponentModel.DataAnnotations;
namespace API.Dtos
{
public class CustomerBasketDto
{
[Required]
public string Id { get; set; }
public List<BasketItemDto> Items { get; set; }
public int? DeliveryMethodId { get; set; }
public string ClientSecret { get; set; }
public string PaymentItentId { get; set; }
public decimal ShippingPrice { get; set; }
}
}