sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/Public/OrderItemDto.cs
2026-07-07 16:41:07 +03:00

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; }
}