17 lines
402 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
{
public string BuyerId { get; set; }
public List<BasketItem> Items { get; set; }
2016-10-17 20:10:18 -07:00
public CustomerBasket(string customerId)
2016-10-17 20:10:18 -07:00
{
BuyerId = customerId;
Items = new List<Model.BasketItem>();
2016-10-17 20:10:18 -07:00
}
}
}