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

19 lines
423 B
C#

namespace LiteCharms.Features.MidrandBooks.Payments.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; } = [];
}