Files
midrandbooks/MidrandBookshop/Services/ShoppingCart/Models/CartItem.cs
T
Khwezi Mngoma 64e0fcba27
continuous-integration/drone/pr Build is passing
Wired up CartDrawel and ProductView to cart service and local storage
2026-06-10 23:01:21 +02:00

18 lines
414 B
C#

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 int Quantity { get; set; }
public decimal Amount { get; set; }
}