namespace ErsatzTV.Scanner.Core.Metadata.Nfo; public class ShowNfo { public ShowNfo() { Genres = new List(); Tags = new List(); Studios = new List(); Actors = new List(); UniqueIds = new List(); } public string? Title { get; set; } public int? Year { get; set; } public string? Plot { get; set; } public string? Outline { get; set; } public string? Tagline { get; set; } public string? ContentRating { get; set; } public Option Premiered { get; set; } public List Genres { get; } public List Tags { get; } public List Studios { get; } public List Actors { get; } public List UniqueIds { get; } }