mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
370 B
12 lines
370 B
namespace ErsatzTV.Core.Domain; |
|
|
|
public class ArtistMetadata : Metadata |
|
{ |
|
public string Disambiguation { get; set; } |
|
public string Biography { get; set; } |
|
public string Formed { get; set; } |
|
public int ArtistId { get; set; } |
|
public Artist Artist { get; set; } |
|
public List<Style> Styles { get; set; } |
|
public List<Mood> Moods { get; set; } |
|
}
|
|
|