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