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

11 lines
234 B
C#

namespace Shadow.Entities;
public class GenreSong
{
// Composite keys
public int GenreId { get; set; }
required public int SongId { get; set; }
required public Genre Genre { get; set; }
required public Song Song { get; set; }
}