using System.Xml; using System.Xml.Serialization; namespace SabreTools.Data.Models.Listxml { [XmlRoot("slotoption")] public class SlotOption { [Required] [XmlAttribute("name")] public string? Name { get; set; } [Required] [XmlAttribute("devname")] public string? DevName { get; set; } /// (yes|no) "no" [XmlAttribute("default")] public bool? Default { get; set; } } }