phronCare/Domain/Dtos/QuoteItemDto.cs
Leandro Hernan Rojas e276e9672c
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 7m16s
Add Authorization Quote
2025-05-29 19:21:57 -03:00

41 lines
1.1 KiB
C#
Raw Permalink 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 Domain.Dtos
{
public class QuoteItemDto
{
/// <summary>
/// Identificador único del ítem dentro del presupuesto.
/// </summary>
public int Id { get; set; }
/// <summary>
/// Descripción del producto o servicio cotizado.
/// </summary>
public string Description { get; set; } = string.Empty;
/// <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; }
}
}