namespace SabreTools.Models.ClrMamePro
{
/// input
public class Input
{
/// players, Numeric/remarks>
[Required]
public string? Players { get; set; }
/// control
public string? Control { get; set; }
/// buttons, Numeric
[Required]
public string? Buttons { get; set; }
/// coins, Numeric
public string? Coins { get; set; }
/// tilt, (yes|no) "no"
public string? Tilt { get; set; }
/// service, (yes|no) "no"
public string? Service { get; set; }
#region DO NOT USE IN PRODUCTION
/// Should be empty
public object[]? ADDITIONAL_ELEMENTS { get; set; }
#endregion
}
}