Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 2m13s
36 lines
928 B
C#
36 lines
928 B
C#
namespace Core.Dtos
|
||
{
|
||
public class QuoteItemDto
|
||
{
|
||
/// <summary>
|
||
/// Descripción del producto o servicio cotizado.
|
||
/// </summary>
|
||
public string Description { get; set; } = "";
|
||
|
||
/// <summary>
|
||
/// Cantidad de unidades cotizadas.
|
||
/// </summary>
|
||
public int Quantity { get; set; }
|
||
|
||
/// <summary>
|
||
/// Precio unitario sin incluir impuestos.
|
||
/// </summary>
|
||
public decimal UnitPrice { get; set; }
|
||
|
||
/// <summary>
|
||
/// Subtotal (Quantity × UnitPrice).
|
||
/// </summary>
|
||
public decimal Subtotal { get; set; }
|
||
|
||
/// <summary>
|
||
/// Importe de impuestos aplicados al ítem.
|
||
/// </summary>
|
||
public decimal TaxAmount { get; set; }
|
||
|
||
/// <summary>
|
||
/// Total del ítem (Subtotal + TaxAmount).
|
||
/// </summary>
|
||
public decimal Total { get; set; }
|
||
}
|
||
}
|