Files
SabreTools/SabreTools.Models/Listxml/DipSwitch.cs

27 lines
635 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("dipswitch")]
public class DipSwitch
{
[XmlAttribute("name")]
public string Name { get; set; }
[XmlAttribute("tag")]
public string Tag { get; set; }
[XmlAttribute("mask")]
public string? Mask { get; set; }
[XmlElement("condition")]
public Condition? Condition { get; set; }
[XmlElement("diplocation")]
public DipLocation[]? DipLocation { get; set; }
[XmlElement("dipvalue")]
public DipValue[]? DipValue { get; set; }
}
}