2017-05-23 16:39:22 +03:00

17 lines
402 B
C#

using System.Collections.Generic;
namespace Microsoft.eShopOnContainers.Services.Basket.API.Model
{
public class CustomerBasket
{
public string BuyerId { get; set; }
public List<BasketItem> Items { get; set; }
public CustomerBasket(string customerId)
{
BuyerId = customerId;
Items = new List<Model.BasketItem>();
}
}
}