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