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 string? NombreDistribuidor { get; set; } public string? NombreEmpresa { get; set; } // Saldo a la fecha desde elegida en el filtro: // - Si existe cierre con FechaCorte < FechaDesde: SaldoCierre + movimientos netos entre fechaCierre+1 y fechaDesde-1. // - Sin cierres previos: 0. public decimal SaldoInicial { get; set; } } }