2025-09-26 10:20:48 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.Listxml
|
2025-09-26 10:20:48 -04:00
|
|
|
{
|
|
|
|
|
[XmlRoot("input")]
|
|
|
|
|
public class Input
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
|
|
|
[XmlAttribute("service")]
|
|
|
|
|
public string? Service { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>(yes|no) "no"</remarks>
|
|
|
|
|
[XmlAttribute("tilt")]
|
|
|
|
|
public string? Tilt { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Numeric</remarks>
|
2025-09-26 11:42:28 -04:00
|
|
|
[Required]
|
2025-09-26 10:20:48 -04:00
|
|
|
[XmlAttribute("players")]
|
|
|
|
|
public string? Players { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Only present in older versions</remarks>
|
|
|
|
|
[XmlAttribute("control")]
|
|
|
|
|
public string? ControlAttr { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Only present in older versions, Numeric?</remarks>
|
|
|
|
|
[XmlAttribute("buttons")]
|
|
|
|
|
public string? Buttons { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Numeric?</remarks>
|
|
|
|
|
[XmlAttribute("coins")]
|
|
|
|
|
public string? Coins { get; set; }
|
|
|
|
|
|
|
|
|
|
[XmlElement("control")]
|
|
|
|
|
public Control[]? Control { get; set; }
|
|
|
|
|
}
|
2026-01-27 12:03:01 -05:00
|
|
|
}
|