* 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
9 lines
193 B
C#
9 lines
193 B
C#
namespace ErsatzTV.Scanner.Core.Metadata.Nfo;
|
|
|
|
public class UniqueIdNfo
|
|
{
|
|
public bool Default { get; set; }
|
|
public string? Type { get; set; }
|
|
public string? Guid { get; set; }
|
|
}
|