Stream custom live channels using your own media
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
745 B

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