Sky.Net/Core/Entities/CustomerBasket.cs

26 lines
624 B
C#
Raw Normal View History

2022-05-17 14:04:42 -07:00
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>();
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-17 14:04:42 -07:00
}
}