2018-03-11 17:07:48 -04:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace CUETools.CTDB
|
|
|
|
|
|
{
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
|
public class CTDBResponseEntry
|
|
|
|
|
|
{
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public long 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 syndrome { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string trackcrcs { get; set; }
|
|
|
|
|
|
[XmlAttribute]
|
|
|
|
|
|
public string toc { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|