using System.Collections.Generic; namespace GestionIntegral.Api.Dtos.Reportes { public class ControlDevolucionesDataResponseDto { public IEnumerable DetallesCtrlDevoluciones { get; set; } = new List(); public IEnumerable DevolucionesOtrosDias { get; set; } = new List(); public IEnumerable RemitosIngresados { get; set; } = new List(); } }