16 lines
		
	
	
		
			662 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			16 lines
		
	
	
		
			662 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								namespace GestionIntegral.Api.Dtos.Radios
							 | 
						||
| 
								 | 
							
								{
							 | 
						||
| 
								 | 
							
								    public class ProgramacionHorariaExcelDto
							 | 
						||
| 
								 | 
							
								    {
							 | 
						||
| 
								 | 
							
								        public int Dia { get; set; }
							 | 
						||
| 
								 | 
							
								        public int Hora { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? TituloObra { get; set; }       // Mapeado desde Cancion.Tema
							 | 
						||
| 
								 | 
							
								        public string? CompositorAutor { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Interprete { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Sello { get; set; }
							 | 
						||
| 
								 | 
							
								        public string? Album { get; set; }
							 | 
						||
| 
								 | 
							
								        // No se incluyen Pista, Introducción, Formato, Placa, NombreRitmo
							 | 
						||
| 
								 | 
							
								        // porque el Excel original de VB.NET no los tenía.
							 | 
						||
| 
								 | 
							
								        // Si se decide mantenerlos en el futuro, se podrían añadir aquí.
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |