15 lines
400 B
C#
15 lines
400 B
C#
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; }
|
|
public decimal VatRate { get; set; }
|
|
public decimal VatAmount { get; set; }
|
|
public decimal TotalPrice { get; set; }
|
|
}
|
|
|