phronCare/Domain/Dtos/QuoteAdjustmentDto.cs
Leandro Hernan Rojas b6c63b874c
All checks were successful
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Successful in 9m29s
Testing Razor PDF Generator
2025-05-15 19:24:12 -03:00

16 lines
401 B
C#

namespace Domain.Dtos
{
public class QuoteAdjustmentDto
{
/// <summary>
/// Motivo del ajuste (ej. "Descuento promocional")
/// </summary>
public string Reason { get; set; } = "";
/// <summary>
/// Importe del ajuste (positivo para recargo, negativo para descuento)
/// </summary>
public decimal Amount { get; set; }
}
}