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:
12
Entities/AlbumInteraction.cs
Normal file
12
Entities/AlbumInteraction.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
namespace Shadow.Entities;
|
||||
public class AlbumInteraction
|
||||
{
|
||||
required public int Id { get; set; }
|
||||
required public int AlbumId { get; set; }
|
||||
required public int UserId { get; set; }
|
||||
public DateTime? PlayDate { get; set; } = null;
|
||||
public bool Starred { get; set; } = false;
|
||||
|
||||
required public Album Album { get; set; }
|
||||
required public User User { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user