2025-08-08 09:48:15 -03:00
|
|
|
namespace GestionIntegral.Api.Dtos.Suscripciones
|
|
|
|
|
{
|
|
|
|
|
public class FacturaConsolidadaDto
|
|
|
|
|
{
|
|
|
|
|
public int IdFactura { get; set; }
|
|
|
|
|
public string NombreEmpresa { get; set; } = string.Empty;
|
|
|
|
|
public decimal ImporteFinal { get; set; }
|
|
|
|
|
public string EstadoPago { get; set; } = string.Empty;
|
|
|
|
|
public string EstadoFacturacion { get; set; } = string.Empty;
|
|
|
|
|
public string? NumeroFactura { get; set; }
|
2025-08-11 15:15:08 -03:00
|
|
|
public decimal TotalPagado { get; set; }
|
2025-08-08 09:48:15 -03:00
|
|
|
public List<FacturaDetalleDto> Detalles { get; set; } = new List<FacturaDetalleDto>();
|
|
|
|
|
}
|
|
|
|
|
}
|