13 lines
331 B
C#
13 lines
331 B
C#
namespace Shadow.Entities;
|
|
public class Artist
|
|
{
|
|
required 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; } = [];
|
|
}
|