// ReSharper disable InconsistentNaming namespace RGB.NET.Devices.Wooting.Enum; /// /// Represents the type of a wooting device /// public enum WootingDeviceType { /// /// 10 Keyless Keyboard. E.g. Wooting One /// KeyboardTKL = 1, /// /// Full Size keyboard. E.g. Wooting Two /// Keyboard = 2, /// /// 60 percent keyboard, E.g. Wooting 60HE /// KeyboardSixtyPercent = 3, /// /// Three key keypad. E.g. Wooting Uwu /// Keypad3Keys = 4, }