Files
Shadow/Entities/AlbumInteraction.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
362 B
C#

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