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.
18 lines
471 B
18 lines
471 B
namespace ErsatzTV.Scanner.Core.Metadata.Nfo; |
|
|
|
public class ArtistNfo |
|
{ |
|
public ArtistNfo() |
|
{ |
|
Genres = new List<string>(); |
|
Styles = new List<string>(); |
|
Moods = new List<string>(); |
|
} |
|
|
|
public string? Name { get; set; } |
|
public string? Disambiguation { get; set; } |
|
public List<string> Genres { get; } |
|
public List<string> Styles { get; } |
|
public List<string> Moods { get; } |
|
public string? Biography { get; set; } |
|
}
|
|
|