mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
28 lines
594 B
C#
28 lines
594 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CUETools.CTDB
|
|
{
|
|
[Serializable]
|
|
public class CTDBResponseMetaTrack
|
|
{
|
|
public CTDBResponseMetaTrack()
|
|
{
|
|
}
|
|
|
|
public CTDBResponseMetaTrack(CTDBResponseMetaTrack src)
|
|
{
|
|
this.name = src.name;
|
|
this.artist = src.artist;
|
|
this.extra = src.extra;
|
|
}
|
|
|
|
[XmlAttribute]
|
|
public string name { get; set; }
|
|
[XmlAttribute]
|
|
public string artist { get; set; }
|
|
[XmlElement]
|
|
public string extra { get; set; }
|
|
}
|
|
}
|