You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class Cart
{
public int Id { get; set; }
public ICollection<CartItem> CartItems { get; set; }
}
public class CartItem
{
public int Id { get; set; }
public int CartId { get; set; }
public Product Product { get; set; }
public int Quantity { get; set; }
}
Suggested design from the discord thread:
child of #70
The text was updated successfully, but these errors were encountered: