mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-16 03:03:06 +00:00
18 lines
409 B
C#
18 lines
409 B
C#
|
|
namespace SabreTools.Data.Models.ClrMamePro
|
|
{
|
|
/// <remarks>dipswitch</remarks>
|
|
public class DipSwitch
|
|
{
|
|
/// <remarks>"name"</remarks>
|
|
[Required]
|
|
public string? Name { get; set; }
|
|
|
|
/// <remarks>"entry"</remarks>
|
|
public string[]? Entry { get; set; }
|
|
|
|
/// <remarks>"default", (yes|no) "no"</remarks>
|
|
public bool? Default { get; set; }
|
|
}
|
|
}
|