22 lines
431 B
C#
Raw Normal View History

2017-05-23 16:39:22 +03:00
using System.Collections.Generic;
2016-10-17 20:10:18 -07:00
namespace Microsoft.eShopOnContainers.Services.Basket.API.Model
{
public class CustomerBasket
{
2019-07-31 12:05:11 +02:00
public string BuyerId { get; set; }
2019-08-29 13:13:10 +02:00
public List<BasketItem> Items { get; set; } = new List<BasketItem>();
2019-07-31 12:05:11 +02:00
public CustomerBasket()
{
}
2016-10-17 20:10:18 -07:00
public CustomerBasket(string customerId)
2016-10-17 20:10:18 -07:00
{
BuyerId = customerId;
2016-10-17 20:10:18 -07:00
}
}
}