mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
14 lines
279 B
C#
14 lines
279 B
C#
// ReSharper disable InconsistentNaming
|
|
|
|
namespace RGB.NET.Devices.Wooting.Enum
|
|
{
|
|
public enum WootingDeviceType
|
|
{
|
|
/// 10 Keyless Keyboard. E.g. Wooting One
|
|
KeyboardTKL = 1,
|
|
|
|
/// Full Size keyboard. E.g. Wooting Two
|
|
Keyboard = 2
|
|
}
|
|
}
|