Ya perdí el hilo de los cambios pero ahi van.
This commit is contained in:
18
Backend/GestionIntegral.Api/Models/Dtos/Radios/CancionDto.cs
Normal file
18
Backend/GestionIntegral.Api/Models/Dtos/Radios/CancionDto.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user