mirror of
https://github.com/claunia/cuetools.net.git
synced 2025-12-16 18:14:25 +00:00
29 lines
628 B
C#
29 lines
628 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace CUETools.CTDB
|
|
{
|
|
[Serializable]
|
|
[XmlRoot(ElementName = "ctdb", Namespace = "http://db.cuetools.net/ns/mmd-1.0#")]
|
|
public class CTDBSubmitResponse
|
|
{
|
|
[XmlIgnore]
|
|
public bool ParityNeeded
|
|
{
|
|
get
|
|
{
|
|
return this.status == "parity needed";
|
|
}
|
|
}
|
|
|
|
[XmlAttribute]
|
|
public string status { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public string message { get; set; }
|
|
|
|
[XmlAttribute]
|
|
public int npar { get; set; }
|
|
}
|
|
}
|