Files
ersatztv/ErsatzTV.Scanner/Core/Metadata/Nfo/OtherVideoNfo.cs
T
Jason DoveandGitHub 9479806cb0 scanner refactoring and other cleanup (#1082)
* 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
2022-12-31 10:57:20 -06:00

32 lines
1021 B
C#

namespace ErsatzTV.Scanner.Core.Metadata.Nfo;
public class OtherVideoNfo
{
public OtherVideoNfo()
{
Genres = new List<string>();
Tags = new List<string>();
Studios = new List<string>();
Actors = new List<ActorNfo>();
Writers = new List<string>();
Directors = new List<string>();
UniqueIds = new List<UniqueIdNfo>();
}
public string? Title { get; set; }
public string? SortTitle { get; set; }
public string? Outline { get; set; }
public int Year { get; set; }
public string? ContentRating { get; set; }
public Option<DateTime> Premiered { get; set; }
public string? Plot { get; set; }
public string? Tagline { get; set; }
public List<string> Genres { get; }
public List<string> Tags { get; }
public List<string> Studios { get; }
public List<ActorNfo> Actors { get; }
public List<string> Writers { get; }
public List<string> Directors { get; }
public List<UniqueIdNfo> UniqueIds { get; }
}