2011-10-24 14:32:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CUETools.CTDB
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
|
public class CTDBResponseMeta
|
|
|
|
|
|
{
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string source { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string id { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string artist { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string album { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string year { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string genre { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string extra { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string country { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string releasedate { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string discnumber { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string disccount { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string discname { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string infourl { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string barcode { get; set; }
|
|
|
|
|
|
[XmlElement]
|
2012-01-17 08:04:16 +00:00
|
|
|
|
public CTDBResponseMetaImage[] coverart;
|
|
|
|
|
|
[XmlElement]
|
2011-10-24 14:32:51 +00:00
|
|
|
|
public CTDBResponseMetaTrack[] track;
|
|
|
|
|
|
[XmlElement]
|
|
|
|
|
|
public CTDBResponseMetaLabel[] label;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|