2023-07-27 22:27:12 -04:00
|
|
|
namespace SabreTools.Models.ClrMamePro
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>dipswitch</remarks>
|
|
|
|
|
public class DipSwitch
|
|
|
|
|
{
|
|
|
|
|
/// <remarks>name</remarks>
|
2023-08-10 12:09:29 -04:00
|
|
|
[Required]
|
|
|
|
|
public string? Name { get; set; }
|
2023-07-27 22:27:12 -04:00
|
|
|
|
|
|
|
|
/// <remarks>entry</remarks>
|
|
|
|
|
public string[]? Entry { get; set; }
|
|
|
|
|
|
2023-08-01 23:18:53 -04:00
|
|
|
/// <remarks>default, (yes|no) "no"</remarks>
|
2023-07-27 22:27:12 -04:00
|
|
|
public string? Default { get; set; }
|
|
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|