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.
27 lines
654 B
27 lines
654 B
using System.Collections.Generic; |
|
using System.Xml.Serialization; |
|
|
|
namespace ErsatzTV.Core.Metadata.Nfo |
|
{ |
|
[XmlRoot("artist")] |
|
public class ArtistNfo |
|
{ |
|
[XmlElement("name")] |
|
public string Name { get; set; } |
|
|
|
[XmlElement("disambiguation")] |
|
public string Disambiguation { get; set; } |
|
|
|
[XmlElement("genre")] |
|
public List<string> Genres { get; set; } |
|
|
|
[XmlElement("style")] |
|
public List<string> Styles { get; set; } |
|
|
|
[XmlElement("mood")] |
|
public List<string> Moods { get; set; } |
|
|
|
[XmlElement("biography")] |
|
public string Biography { get; set; } |
|
} |
|
}
|
|
|