* clean up genre, tag, studio orphans * enforce foreign keys at connection level * wip * fix fragment scroll offset * fix see all link for music videos * add fake artist metadata * not null artist id * add artist scanning * remove improperly named music videos * code cleanup * add artists to search results and collections * clean up music video metadata / artist * add artist view * show music videos on artist page * add music video artwork placeholder
28 lines
654 B
C#
28 lines
654 B
C#
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; }
|
|
}
|
|
}
|