Wired up CartDrawel and ProductView to cart service and local storage
continuous-integration/drone/pr Build is passing
continuous-integration/drone/pr Build is passing
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
using LiteCharms.Features.MidrandBooks.Products.Models;
|
||||
using LiteCharms.Features.MidrandBooks.Authors.Models;
|
||||
using LiteCharms.Features.MidrandBooks.Products.Models;
|
||||
|
||||
namespace MidrandBookshop.Services.ShoppingCart.Models;
|
||||
|
||||
public sealed class CartItem
|
||||
{
|
||||
public Author? Author { get; set; }
|
||||
|
||||
public Product? Product { get; set; }
|
||||
|
||||
public ProductPrice? Price { get; set; }
|
||||
|
||||
public long Quantity { get; set; }
|
||||
public int Quantity { get; set; }
|
||||
|
||||
public decimal Amount { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user