namespace ErsatzTV.Scanner.Core.Metadata.Nfo; public class MovieNfo { public MovieNfo() { Genres = new List(); Tags = new List(); Studios = new List(); Actors = new List(); Writers = new List(); Directors = new List(); UniqueIds = new List(); } 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 Premiered { get; set; } public string? Plot { get; set; } // public string? Tagline { get; set; } public List Genres { get; } public List Tags { get; } public List Studios { get; } public List Actors { get; } public List Writers { get; } public List Directors { get; } public List UniqueIds { get; } }