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; } }