Files
SabreTools/SabreTools.Models/Listxml/Machine.cs

25 lines
738 B
C#
Raw Normal View History

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