Files
midrandbooks/MidrandBookshop/Services/ShoppingCart/Models/CartItem.cs
T
Khwezi Mngoma 3bce80c963
continuous-integration/drone/pr Build is passing
Implemented cart service with state tracker and linked to main layout
2026-06-09 23:39:49 +02:00

13 lines
276 B
C#

using LiteCharms.Features.MidrandBooks.Products.Models;
namespace MidrandBookshop.Services.ShoppingCart.Models;
public sealed class CartItem
{
public ProductPrice? Price { get; set; }
public long Quantity { get; set; }
public decimal Amount { get; set; }
}