mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-12 00:38:48 -07:00
20 lines
463 B
C#
20 lines
463 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "PrerequisiteItem", Namespace = "")]
|
|
[Serializable]
|
|
public class PrerequisiteItem {
|
|
[XmlElement(ElementName = "Type")]
|
|
public PrerequisiteRequiredType Type;
|
|
|
|
[XmlElement(ElementName = "Value")]
|
|
public string Value;
|
|
|
|
[XmlElement(ElementName = "Quantity")]
|
|
public short Quantity;
|
|
|
|
[XmlElement(ElementName = "ClientRule")]
|
|
public bool ClientRule;
|
|
}
|