15 lines
		
	
	
		
			516 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			516 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GestionIntegral.Api.Models.Suscripciones
 | |
| {
 | |
|     public class Pago
 | |
|     {
 | |
|         public int IdPago { get; set; }
 | |
|         public int IdFactura { get; set; }
 | |
|         public DateTime FechaPago { get; set; }
 | |
|         public int IdFormaPago { get; set; }
 | |
|         public decimal Monto { get; set; }
 | |
|         public string Estado { get; set; } = string.Empty;
 | |
|         public string? Referencia { get; set; }
 | |
|         public string? Observaciones { get; set; }
 | |
|         public int IdUsuarioRegistro { get; set; }
 | |
|     }
 | |
| } |