feat: add database connections, initial migration and early CLI tooling
All checks were successful
Update changelog / changelog (push) Successful in 25s
All checks were successful
Update changelog / changelog (push) Successful in 25s
This commit is contained in:
9
Entities/PlaylistUser.cs
Normal file
9
Entities/PlaylistUser.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace Shadow.Entities;
|
||||
public class PlaylistUser
|
||||
{
|
||||
required public int PlaylistId { get; set; }
|
||||
required public int UserId { get; set; }
|
||||
|
||||
required public Playlist Playlist { get; set; }
|
||||
required public User User { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user