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

14 lines
588 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Reportes
{
public class DetalleDistribucionCanillaDto
{
public string Publicacion { get; set; } = string.Empty;
public string Canilla { get; set; } = string.Empty;
public int TotalCantSalida { get; set; }
public int TotalCantEntrada { get; set; }
public decimal TotalRendir { get; set; }
// 'Fecha' si es para SP_DistCanillasEntradaSalidaPubliFechaLiq
// y SP_DistCanillasAccEntradaSalidaPubliFechaLiq
public DateTime? Fecha { get; set; } // Hacemos nullable para adaptarlo
}
}