namespace GestionIntegral.Api.Dtos.Suscripciones { public class ResumenCuentaSuscriptorDto { public int IdSuscriptor { get; set; } public string NombreSuscriptor { get; set; } = string.Empty; public decimal SaldoPendienteTotal { get; set; } public decimal ImporteTotal { get; set; } public List Facturas { get; set; } = new List(); } }