fix deserialize error

This commit is contained in:
Erik Pique 2019-07-31 12:05:11 +02:00
parent 76cb5c5e79
commit 267a2f5e48

View File

@ -4,8 +4,14 @@ namespace Microsoft.eShopOnContainers.Services.Basket.API.Model
{ {
public class CustomerBasket public class CustomerBasket
{ {
public string BuyerId { get; set; } public string BuyerId { get; set; }
public List<BasketItem> Items { get; set; }
public List<BasketItem> Items { get; set; }
public CustomerBasket()
{
}
public CustomerBasket(string customerId) public CustomerBasket(string customerId)
{ {