Files
cuetools.net/CUETools.CTDB/CTDBResponseMetaTrack.cs

17 lines
359 B
C#
Raw Normal View History

using System;
using System.Xml.Serialization;
namespace CUETools.CTDB
{
[Serializable]
public class CTDBResponseMetaTrack
{
[XmlAttribute]
public string name { get; set; }
[XmlAttribute]
public string artist { get; set; }
[XmlAttribute]
public string extra { get; set; }
}
}