phronCare/Domain/Dtos/QuoteItemDto.cs
Leandro Hernan Rojas 272f8330d7
Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 2m13s
Refactoring & Add Quotes
2025-05-13 12:08:38 -03:00

36 lines
928 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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