fix deserialize error
This commit is contained in:
parent
76cb5c5e79
commit
267a2f5e48
@ -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…
x
Reference in New Issue
Block a user