Files
Shadow/Entities/PlaylistUser.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

10 lines
236 B
C#

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