13 lines
278 B
C#
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; }
|
|
}
|