Browse Source

customer basket items setteable

pull/1547/head
Borja García Rodríguez 4 years ago
parent
commit
e66e61187f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Services/Basket/Basket.API/Model/CustomerBasket.cs

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

@ -6,7 +6,7 @@ namespace Microsoft.eShopOnContainers.Services.Basket.API.Model
{
public string BuyerId { get; init; }
public List<BasketItem> Items { get; init; } = new List<BasketItem>();
public List<BasketItem> Items { get; set; } = new List<BasketItem>();
public CustomerBasket()
{


Loading…
Cancel
Save