13 lines
		
	
	
		
			541 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			541 B
		
	
	
	
		
			C#
		
	
	
	
	
	
|  | 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; } | ||
|  |         public List<FacturaDetalleDto> Detalles { get; set; } = new List<FacturaDetalleDto>(); | ||
|  |     } | ||
|  | } |