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,9 +4,15 @@ 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)
{ {
BuyerId = customerId; BuyerId = customerId;