Files
midrandbooks/MidrandBookshop/Services/ShoppingCart/Models/Cart.cs
T
Khwezi Mngoma e7acb05027
continuous-integration/drone/pr Build is passing
Completed Cart page design
2026-06-11 00:23:57 +02:00

19 lines
419 B
C#

namespace MidrandBookshop.Services.ShoppingCart.Models;
public sealed class Cart
{
public long? CustomerId { get; set; }
public long? OrderId { get; set; }
public decimal TotalAmount { 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; } = [];
}