11 lines
433 B
C#
11 lines
433 B
C#
|
|
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<FacturaConsolidadaDto> Facturas { get; set; } = new List<FacturaConsolidadaDto>();
|
||
|
|
}
|
||
|
|
}
|