using System.Collections.Generic; namespace GestionIntegral.Api.Dtos.Reportes { public class ReporteCuentasDistribuidorResponseDto { public IEnumerable EntradasSalidas { get; set; } = new List(); public IEnumerable DebitosCreditos { get; set; } = new List(); public IEnumerable Pagos { get; set; } = new List(); public IEnumerable Saldos { get; set; } = new List(); // O podría ser SaldoDto SaldoActual si siempre es uno public string? NombreDistribuidor { get; set; } // Para el título del reporte public string? NombreEmpresa { get; set; } // Para el título del reporte } }