CUETools.CTDB: split classes into separate files.

This commit is contained in:
karamanolev
2011-10-24 14:32:51 +00:00
parent ce79dd8641
commit 426f733d19
11 changed files with 306 additions and 250 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Xml.Serialization;
namespace CUETools.CTDB
{
[Serializable]
public class CTDBResponseEntry
{
[XmlAttribute]
public string id { get; set; }
[XmlAttribute]
public string crc32 { get; set; }
[XmlAttribute]
public int confidence { get; set; }
[XmlAttribute]
public int npar { get; set; }
[XmlAttribute]
public int stride { get; set; }
[XmlAttribute]
public string hasparity { get; set; }
[XmlAttribute]
public string parity { get; set; }
[XmlAttribute]
public string toc { get; set; }
}
}