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

12 lines
548 B
C#

namespace GestionIntegral.Api.Dtos.Reportes
{
public class ExistenciaPapelDto
{
public string TipoBobina { get; set; } = string.Empty;
public int? BobinasEnStock { get; set; } // Puede ser 0 si no hay
public int? TotalKilosEnStock { get; set; } // Puede ser 0
public int? ConsumoAcumulado { get; set; } // Puede ser 0
public int? PromedioDiasDisponibles { get; set; } // Puede ser null si no hay consumo o stock
public DateTime? FechaEstimacionFinStock { get; set; } // Puede ser null
}
}