using System.Xml; using System.Xml.Serialization; namespace SabreTools.Models.Listxml { [XmlRoot("conflocation")] public class ConfLocation { [XmlAttribute("name")] public string Name { get; set; } /// Numeric? [XmlAttribute("number")] public string Number { get; set; } /// (yes|no) "no" [XmlAttribute("inverted")] public string? Inverted { get; set; } } }