Files
midrandbooks/MidrandBookshop/Services/ShoppingCart/Models/Cart.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

19 lines
418 B
C#

namespace MidrandBookshop.Services.ShoppingCart.Models;
public sealed class Cart
{
public long? CustomerId { get; set; }
public long? OrderId { get; set; }
public decimal TotalPrice { get; set; }
public decimal TotalVat { get; set; }
public decimal VatRate { get; set; } = 0.15m;
public bool IsVatInclusive { get; set; } = true;
public IList<CartItem> Items { get; set; } = [];
}