forked from SoDOff-Project/sodoff
15 lines
352 B
C#
15 lines
352 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace sodoff.Schema;
|
|
|
|
[XmlRoot(ElementName = "ItemStateRule", Namespace = "")]
|
|
[Serializable]
|
|
public class ItemStateRule
|
|
{
|
|
[XmlElement(ElementName = "Criterias")]
|
|
public List<ItemStateCriteria> Criterias;
|
|
|
|
[XmlElement(ElementName = "CompletionAction")]
|
|
public CompletionAction CompletionAction;
|
|
}
|