namespace ErsatzTV.Scanner.Core.Metadata.Nfo; public class MovieNfo { 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; } = []; public List Countries { get; } = []; }