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

10 lines
407 B
C#
Raw Normal View History

using System.Collections.Generic;
namespace GestionIntegral.Api.Dtos.Reportes
{
public class MovimientoBobinasPorEstadoResponseDto
{
public IEnumerable<MovimientoBobinaEstadoDetalleDto> Detalle { get; set; } = new List<MovimientoBobinaEstadoDetalleDto>();
public IEnumerable<MovimientoBobinaEstadoTotalDto> Totales { get; set; } = new List<MovimientoBobinaEstadoTotalDto>();
}
}