mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-11 08:43:03 +00:00
28 lines
685 B
C#
28 lines
685 B
C#
|
|
namespace SabreTools.Data.Models.ClrMamePro
|
|
{
|
|
/// <remarks>input</remarks>
|
|
public class Input
|
|
{
|
|
/// <remarks>"players"/remarks>
|
|
[Required]
|
|
public long? Players { get; set; }
|
|
|
|
/// <remarks>"control"</remarks>
|
|
public string? Control { get; set; }
|
|
|
|
/// <remarks>"buttons"</remarks>
|
|
[Required]
|
|
public long? Buttons { get; set; }
|
|
|
|
/// <remarks>"coins"</remarks>
|
|
public long? Coins { get; set; }
|
|
|
|
/// <remarks>"tilt", (yes|no) "no"</remarks>
|
|
public bool? Tilt { get; set; }
|
|
|
|
/// <remarks>"service", (yes|no) "no"</remarks>
|
|
public bool? Service { get; set; }
|
|
}
|
|
}
|