EAC CTDB plugin update for new EAC version

This commit is contained in:
Grigory Chudov
2015-02-25 16:34:31 -05:00
parent 7a19195c0f
commit 801548af02
8 changed files with 67 additions and 16 deletions

View File

@@ -0,0 +1,24 @@
using System;
using System.Xml.Serialization;
namespace CUETools.CTDB
{
[Serializable]
public class CTDBResponseMetaRelease
{
public CTDBResponseMetaRelease()
{
}
public CTDBResponseMetaRelease(CTDBResponseMetaRelease src)
{
this.date = src.date;
this.country = src.country;
}
[XmlAttribute]
public string date { get; set; }
[XmlAttribute]
public string country { get; set; }
}
}