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

10 lines
333 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Reportes
{
public class ConsumoBobinasPublicacionDto
{
public string NombrePlanta { get; set; } = string.Empty;
public string NombrePublicacion { get; set; } = string.Empty;
public int TotalKilos { get; set; }
public int CantidadBobinas { get; set; }
}
}