26 lines
624 B
C#
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; }
|
|
}
|
|
} |