mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
CUETools.CTDB: split classes into separate files.
This commit is contained in:
15
CUETools.CTDB/CTDBResponse.cs
Normal file
15
CUETools.CTDB/CTDBResponse.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user