namespace SabreTools.Data.Models.ClrMamePro { /// dipswitch public class DipSwitch { /// "name" [Required] public string? Name { get; set; } /// "entry" public string[]? Entry { get; set; } /// "default", (yes|no) "no" public bool? Default { get; set; } } }