namespace ErsatzTV.Scanner.Core.Metadata.Nfo; public class MusicVideoNfo { public MusicVideoNfo() { Artists = new List(); Genres = new List(); Tags = new List(); Studios = new List(); Directors = new List(); } public List Artists { get; } public string? Title { get; set; } public string? Album { get; set; } public string? Plot { get; set; } public int Track { get; set; } public Option Aired { get; set; } public int Year { get; set; } public List Genres { get; } public List Tags { get; } public List Studios { get; } public List Directors { get; } }