18 lines
		
	
	
		
			695 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			18 lines
		
	
	
		
			695 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								namespace GestionIntegral.Api.Dtos.Radios
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public class CancionDto
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        public int Id { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Tema { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? CompositorAutor { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Interprete { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Sello { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Placa { get; set; }
							 | 
						||
| 
								 | 
							
								        public int? Pista { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Introduccion { get; set; }
							 | 
						||
| 
								 | 
							
								        public int? IdRitmo { get; set; } // Renombrado de Ritmo a IdRitmo para claridad en DTO
							 | 
						||
| 
								 | 
							
								        public string? NombreRitmo { get; set; } // Para mostrar en UI
							 | 
						||
| 
								 | 
							
								        public string? Formato { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Album { get; set; }
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |