Files

28 lines
685 B
C#
Raw Permalink Normal View History

2025-09-26 12:44:16 -04:00
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.ClrMamePro
2025-09-26 10:20:48 -04:00
{
/// <remarks>input</remarks>
public class Input
{
/// <remarks>"players"/remarks>
[Required]
public long? Players { get; set; }
2025-09-26 10:20:48 -04:00
2026-04-01 21:59:16 -04:00
/// <remarks>"control"</remarks>
2025-09-26 10:20:48 -04:00
public string? Control { get; set; }
/// <remarks>"buttons"</remarks>
[Required]
public long? Buttons { get; set; }
2025-09-26 10:20:48 -04:00
/// <remarks>"coins"</remarks>
public long? Coins { get; set; }
2025-09-26 10:20:48 -04:00
2026-04-01 21:59:16 -04:00
/// <remarks>"tilt", (yes|no) "no"</remarks>
public bool? Tilt { get; set; }
2025-09-26 10:20:48 -04:00
2026-04-01 21:59:16 -04:00
/// <remarks>"service", (yes|no) "no"</remarks>
public bool? Service { get; set; }
2025-09-26 10:20:48 -04:00
}
2026-01-27 12:03:01 -05:00
}