* move subtitles provider into scanner * move more stuff into scanner * move nfo into scanner * add scan subcommand * fix a bunch of nfo build warnings * more subcommands * fix warnings * cleanup logging * remove unused code * cleanup old ffmpeg stuff * rename complex filter * refactor wrapped segmenter
19 lines
471 B
C#
19 lines
471 B
C#
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; }
|
|
}
|