Files
SabreTools/SabreTools.Models/Listxml/Condition.cs

22 lines
506 B
C#
Raw Normal View History

2023-07-11 23:39:54 -04:00
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.Listxml
{
[XmlRoot("condition")]
public class Condition
{
[XmlAttribute("tag")]
public string Tag { get; set; }
[XmlAttribute("mask")]
public string Mask { get; set; }
/// <remarks>(eq|ne|gt|le|lt|ge)</remarks>
[XmlAttribute("relation")]
public string Relation { get; set; }
[XmlAttribute("value")]
public string Value { get; set; }
}
}