using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.Listxml
{
[XmlRoot("input")]
public class Input
{
/// (yes|no) "no"
[XmlAttribute("service")]
public string? Service { get; set; }
/// (yes|no) "no"
[XmlAttribute("tilt")]
public string? Tilt { get; set; }
/// Numeric?
[XmlAttribute("players")]
public string Players { get; set; }
/// Numeric?
[XmlAttribute("coins")]
public string? Coins { get; set; }
/// Numeric?
[XmlElement("control")]
public Control[]? Control { get; set; }
}
}