Sky.Net/Core/Entities/CustomerBasket.cs
2022-05-17 14:04:42 -07:00

22 lines
422 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>();
}
}