mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
16 lines
371 B
C#
16 lines
371 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CUETools.CTDB
|
|
{
|
|
[Serializable]
|
|
[XmlRoot(ElementName = "ctdb", Namespace = "http://db.cuetools.net/ns/mmd-1.0#")]
|
|
public class CTDBResponse
|
|
{
|
|
[XmlElement]
|
|
public CTDBResponseEntry[] entry;
|
|
[XmlElement]
|
|
public CTDBResponseMeta[] musicbrainz;
|
|
}
|
|
}
|