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:
10
Entities/GenreSong.cs
Normal file
10
Entities/GenreSong.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Shadow.Entities;
|
||||
public class GenreSong
|
||||
{
|
||||
// Composite keys
|
||||
required public int GenreId { get; set; }
|
||||
required public int SongId { get; set; }
|
||||
|
||||
required public Genre Genre { get; set; }
|
||||
required public Song Song { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user