2023-07-11 23:39:54 -04:00
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.Listxml
|
|
|
|
|
{
|
|
|
|
|
[XmlRoot("machine")]
|
2023-07-14 11:09:57 -04:00
|
|
|
public class Machine : GameBase
|
2023-07-11 23:39:54 -04:00
|
|
|
{
|
2023-07-14 11:09:57 -04:00
|
|
|
/// <remarks>Appears after Name</remarks>
|
2023-07-11 23:39:54 -04:00
|
|
|
|
|
|
|
|
[XmlAttribute("sourcefile")]
|
|
|
|
|
public string? SourceFile { get; set; }
|
|
|
|
|
|
2023-07-14 11:09:57 -04:00
|
|
|
/// <remarks>(yes|no) "no", Appears after SourceFile</remarks>
|
2023-07-11 23:39:54 -04:00
|
|
|
[XmlAttribute("isbios")]
|
|
|
|
|
public string? IsBios { get; set; }
|
|
|
|
|
|
2023-07-14 11:09:57 -04:00
|
|
|
/// <remarks>(yes|no) "no", Appears after IsBios</remarks>
|
2023-07-11 23:39:54 -04:00
|
|
|
[XmlAttribute("isdevice")]
|
|
|
|
|
public string? IsDevice { get; set; }
|
|
|
|
|
|
2023-07-14 11:09:57 -04:00
|
|
|
/// <remarks>(yes|no) "no", Appears after IsDevice</remarks>
|
2023-07-11 23:39:54 -04:00
|
|
|
[XmlAttribute("ismechanical")]
|
|
|
|
|
public string? IsMechanical { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|