// 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
}