namespace ErsatzTV.Scanner.Core.Metadata.Nfo; public class ArtistNfo { public ArtistNfo() { Genres = new List(); Styles = new List(); Moods = new List(); } public string? Name { get; set; } public string? Disambiguation { get; set; } public List Genres { get; } public List Styles { get; } public List Moods { get; } public string? Biography { get; set; } }