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

11 lines
289 B
C#

namespace Shadow.Entities;
public class Genre
{
required public int Id { get; set; }
required public string Name { get; set; }
required public string NormalizedName { get; set; }
// List of genre-song pairs of a given genre
public List<GenreSong> GenreSongPair { get; set; } = [];
}