19 lines
		
	
	
		
			822 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			822 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace GestionIntegral.Api.Dtos.Suscripciones
 | |
| {
 | |
|     // DTO para mostrar la información de un suscriptor
 | |
|     public class SuscriptorDto
 | |
|     {
 | |
|         public int IdSuscriptor { get; set; }
 | |
|         public string NombreCompleto { get; set; } = string.Empty;
 | |
|         public string? Email { get; set; }
 | |
|         public string? Telefono { get; set; }
 | |
|         public string Direccion { get; set; } = string.Empty;
 | |
|         public string TipoDocumento { get; set; } = string.Empty;
 | |
|         public string NroDocumento { get; set; } = string.Empty;
 | |
|         public string? CBU { get; set; }
 | |
|         public int IdFormaPagoPreferida { get; set; }
 | |
|         public string NombreFormaPagoPreferida { get; set; } = string.Empty; // Para UI
 | |
|         public string? Observaciones { get; set; }
 | |
|         public bool Activo { get; set; }
 | |
|     }
 | |
| } |