Adding cart/basket support and applicationuser (without EF requirement)
This commit is contained in:
10
src/ApplicationCore/Entities/Basket.cs
Normal file
10
src/ApplicationCore/Entities/Basket.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Microsoft.eShopWeb.ApplicationCore.Entities
|
||||
{
|
||||
public class Basket : BaseEntity<string>
|
||||
{
|
||||
public string BuyerId { get; set; }
|
||||
public List<BasketItem> Items { get; set; } = new List<BasketItem>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user