namespace ErsatzTV.Scanner.Core.Metadata.Nfo; public class EpisodeNfo { public EpisodeNfo() { Genres = new List(); Tags = new List(); Actors = new List(); Writers = new List(); Directors = new List(); UniqueIds = new List(); } public string? ShowTitle { get; set; } public string? Title { get; set; } public int Episode { get; set; } public int Season { get; set; } public string? ContentRating { get; set; } public Option Aired { get; set; } public string? Plot { get; set; } public List Genres { get; } public List Tags { get; } public List Actors { get; } public List Writers { get; } public List Directors { get; } public List UniqueIds { get; } }