Files
Shadow/Entities/AlbumInteraction.cs
sherl eebc5f1d6d fix: remove required from entities' id
also adds "Global" entity for storing global configuration
2025-12-16 04:01:45 +01:00

13 lines
353 B
C#

namespace Shadow.Entities;
public class AlbumInteraction
{
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; }
}