using System.Xml; using System.Xml.Serialization; namespace SabreTools.Models.SoftwareList { [XmlRoot("dipvalue")] public class DipValue { [XmlAttribute("name")] public string Name { get; set; } [XmlAttribute("value")] public string Value { get; set; } /// (yes|no) "no" [XmlAttribute("default")] public string? Default { get; set; } } }