Sky.Net/Core/Entities/CustomerBasket.cs
2022-05-30 13:25:27 -07:00

26 lines
624 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Core.Entities
{
public class CustomerBasket
{
public CustomerBasket()
{
}
public CustomerBasket(string id)
{
Id = id;
}
public string Id { get; set; }
public List<BasketItem> Items { get; set; } = new List<BasketItem>();
public int? DeliveryMethodId { get; set; }
public string ClientSecret { get; set; }
public string PaymentItentId { get; set; }
public decimal ShippingPrice { get; set; }
}
}