Browse Source

fix deserialize error

features/migration-dotnet3
Erik Pique 5 years ago
parent
commit
267a2f5e48
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      src/Services/Basket/Basket.API/Model/CustomerBasket.cs

+ 8
- 2
src/Services/Basket/Basket.API/Model/CustomerBasket.cs View File

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


Loading…
Cancel
Save