2011-10-24 14:32:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CUETools.CTDB
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
|
public class CTDBResponseMetaTrack
|
|
|
|
|
|
{
|
2012-04-08 23:54:36 +00:00
|
|
|
|
public CTDBResponseMetaTrack()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public CTDBResponseMetaTrack(CTDBResponseMetaTrack src)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.name = src.name;
|
|
|
|
|
|
this.artist = src.artist;
|
|
|
|
|
|
this.extra = src.extra;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2011-10-24 14:32:51 +00:00
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string name { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string artist { get; set; }
|
2012-04-16 07:19:57 +00:00
|
|
|
|
[XmlElement]
|
2011-10-24 14:32:51 +00:00
|
|
|
|
public string extra { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|