2011-10-24 14:32:51 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CUETools.CTDB
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
|
public class CTDBResponseEntry
|
|
|
|
|
|
{
|
|
|
|
|
|
[XmlAttribute]
|
2011-10-30 23:39:20 +00:00
|
|
|
|
public long id { get; set; }
|
2011-10-24 14:32:51 +00:00
|
|
|
|
[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]
|
2011-11-15 10:56:49 +00:00
|
|
|
|
public string syndrome { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string trackcrcs { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
2011-10-24 14:32:51 +00:00
|
|
|
|
public string toc { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|