using System.Collections.Generic; namespace GestionIntegral.Api.Dtos.Reportes { public class ReporteDistribucionCanillasResponseDto { public IEnumerable Canillas { get; set; } = new List(); public IEnumerable CanillasAccionistas { get; set; } = new List(); public IEnumerable CanillasTodos { get; set; } = new List(); public IEnumerable CanillasLiquidadasOtraFecha { get; set; } = new List(); public IEnumerable CanillasAccionistasLiquidadasOtraFecha { get; set; } = new List(); public IEnumerable ControlDevolucionesRemitos { get; set; } = new List(); public IEnumerable ControlDevolucionesDetalle { get; set; } = new List(); public IEnumerable ControlDevolucionesOtrosDias { get; set; } = new List(); } }