17 lines
645 B
C#
17 lines
645 B
C#
|
|
namespace GestionIntegral.Api.Models.Radios
|
||
|
|
{
|
||
|
|
public class Cancion // Corresponde a rad_dtCanciones
|
||
|
|
{
|
||
|
|
public int Id { get; set; } // Id (PK, Identity)
|
||
|
|
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? Ritmo { get; set; } // FK a rad_dtRitmos.Id
|
||
|
|
public string? Formato { get; set; }
|
||
|
|
public string? Album { get; set; }
|
||
|
|
}
|
||
|
|
}
|