mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
24 lines
510 B
C#
24 lines
510 B
C#
// ReSharper disable InconsistentNaming
|
|
|
|
namespace RGB.NET.Devices.Wooting.Enum;
|
|
|
|
/// <summary>
|
|
/// Represents the type of a wooting device
|
|
/// </summary>
|
|
public enum WootingDeviceType
|
|
{
|
|
/// <summary>
|
|
/// 10 Keyless Keyboard. E.g. Wooting One
|
|
/// </summary>
|
|
KeyboardTKL = 1,
|
|
|
|
/// <summary>
|
|
/// Full Size keyboard. E.g. Wooting Two
|
|
/// </summary>
|
|
Keyboard = 2,
|
|
|
|
/// <summary>
|
|
/// Full Size keyboard. E.g. Wooting Two
|
|
/// </summary>
|
|
KeyboardSixtyPercent = 3
|
|
} |