mirror of https://github.com/ErsatzTV/ErsatzTV.git
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.
36 lines
860 B
36 lines
860 B
using System.Collections.Generic; |
|
using System.Xml.Serialization; |
|
|
|
namespace ErsatzTV.Core.Metadata.Nfo |
|
{ |
|
[XmlRoot("musicvideo")] |
|
public class MusicVideoNfo |
|
{ |
|
[XmlElement("artist")] |
|
public string Artist { get; set; } |
|
|
|
[XmlElement("title")] |
|
public string Title { get; set; } |
|
|
|
[XmlElement("album")] |
|
public string Album { get; set; } |
|
|
|
[XmlElement("plot")] |
|
public string Plot { get; set; } |
|
|
|
[XmlElement("premiered")] |
|
public string Premiered { get; set; } |
|
|
|
[XmlElement("year")] |
|
public int Year { get; set; } |
|
|
|
[XmlElement("genre")] |
|
public List<string> Genres { get; set; } |
|
|
|
[XmlElement("tag")] |
|
public List<string> Tags { get; set; } |
|
|
|
[XmlElement("studio")] |
|
public List<string> Studios { get; set; } |
|
} |
|
}
|
|
|