9 lines
		
	
	
		
			244 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			244 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GestionIntegral.Api.Dtos.Suscripciones
 | |
| {
 | |
|     public class FormaPagoDto
 | |
|     {
 | |
|         public int IdFormaPago { get; set; }
 | |
|         public string Nombre { get; set; } = string.Empty;
 | |
|         public bool RequiereCBU { get; set; }
 | |
|     }
 | |
| } |