Files
components/LiteCharms.Features.MidrandBooks/Payments/Models/CartItem.cs
T
Khwezi Mngoma f5f1035598
continuous-integration/drone/pr Build is passing
Added CartService
2026-06-12 08:43:58 +02:00

18 lines
418 B
C#

using LiteCharms.Features.MidrandBooks.Authors.Models;
using LiteCharms.Features.MidrandBooks.Products.Models;
namespace LiteCharms.Features.MidrandBooks.Payments.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; }
}