Files
components/LiteCharms.Features.MidrandBooks/Orders/Models/CartItem.cs
T
Khwezi Mngoma 59af9a5406
continuous-integration/drone/pr Build is passing
Added CartService and LocalStorageService (browser)
2026-06-09 09:08:46 +02:00

13 lines
278 B
C#

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