Files
Shadow/Entities/PlaylistSong.cs
sherl f648a73cb2
All checks were successful
Update changelog / changelog (push) Successful in 25s
feat: add database connections, initial migration and early CLI tooling
2025-12-09 01:46:05 +01:00

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; }
}