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

9 lines
304 B
C#
Raw Normal View History

namespace GestionIntegral.Api.Dtos.Reportes
{
public class MovimientoBobinaEstadoTotalDto
{
public string TipoMovimiento { get; set; } = string.Empty; // "Ingresos", "Utilizadas", "Dañadas"
public int TotalBobinas { get; set; }
public int TotalKilos { get; set; }
}
}