11 lines
381 B
C#
11 lines
381 B
C#
|
|
namespace Domain.Dtos
|
|||
|
|
{
|
|||
|
|
public class QuoteAuthorizationDto
|
|||
|
|
{
|
|||
|
|
public int Id { get; set; } // Id del detalle
|
|||
|
|
public bool Approved { get; set; } // ¿Aprobado?
|
|||
|
|
public int? ApprovedQuantity { get; set; } // Cantidad aprobada
|
|||
|
|
public decimal? ApprovedUnitPrice { get; set; } // Precio aprobado
|
|||
|
|
}
|
|||
|
|
}
|