Files
GestionIntegralWeb/Backend/GestionIntegral.Api/Models/Dtos/Reportes/LiquidacionCanillaDetalleDto.cs

9 lines
389 B
C#

public class LiquidacionCanillaDetalleDto
{
public string Publicacion { get; set; } = string.Empty;
public string Canilla { get; set; } = string.Empty; // Para el nombre del canilla en el reporte
public int TotalCantSalida { get; set; }
public int TotalCantEntrada { get; set; }
public decimal TotalRendir { get; set; }
public decimal PrecioEjemplar { get; set; }
}