13 lines
297 B
C#
13 lines
297 B
C#
namespace Shadow.Entities;
|
|
public class PlaylistSong
|
|
{
|
|
// Composite keys
|
|
required public int PlaylistId { get; set; }
|
|
required public int SongId { get; set; }
|
|
|
|
required public int Index { get; set; }
|
|
|
|
required public Playlist Playlist { get; set; }
|
|
required public Song Song { get; set; }
|
|
}
|