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

namespace Shadow.Entities;
public class Artist
{
public int Id { get; set; }
required public string Name { get; set; }
required public string NormalizedName { get; set; }
// List of artists songs
public List<Song> Songs { get; set; } = [];
// List of artists albums
public List<Album> Albums { get; set; } = [];
}