using System.Xml.Serialization; namespace SabreTools.Models.Listxml { [XmlRoot("machine")] public class Machine : GameBase { /// Appears after Name [XmlAttribute("sourcefile")] public string? SourceFile { get; set; } /// (yes|no) "no", Appears after SourceFile [XmlAttribute("isbios")] public string? IsBios { get; set; } /// (yes|no) "no", Appears after IsBios [XmlAttribute("isdevice")] public string? IsDevice { get; set; } /// (yes|no) "no", Appears after IsDevice [XmlAttribute("ismechanical")] public string? IsMechanical { get; set; } } }