2026-02-24 20:44:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Sozsoft.Platform.Public;
|
|
|
|
|
|
|
|
|
|
|
|
public class OrderItemDto
|
|
|
|
|
|
{
|
|
|
|
|
|
public Guid ProductId { get; set; }
|
|
|
|
|
|
public ProductDto Product { get; set; }
|
|
|
|
|
|
public string BillingCycle { get; set; } // monthly | yearly
|
|
|
|
|
|
public int Quantity { get; set; }
|
2026-07-07 13:41:07 +00:00
|
|
|
|
public decimal VatRate { get; set; }
|
|
|
|
|
|
public decimal VatAmount { get; set; }
|
2026-02-24 20:44:16 +00:00
|
|
|
|
public decimal TotalPrice { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
|