mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
37 lines
724 B
C#
37 lines
724 B
C#
// ReSharper disable UnusedMember.Global
|
|
// ReSharper disable InconsistentNaming
|
|
|
|
namespace RGB.NET.Devices.Logitech
|
|
{
|
|
/// <summary>
|
|
/// Contains list of available physical layouts for logitech keyboards.
|
|
/// </summary>
|
|
public enum LogitechPhysicalKeyboardLayout
|
|
{
|
|
/// <summary>
|
|
/// US-Keyboard
|
|
/// </summary>
|
|
US = 1,
|
|
|
|
/// <summary>
|
|
/// UK-Keyboard
|
|
/// </summary>
|
|
UK = 2,
|
|
|
|
/// <summary>
|
|
/// BR-Keyboard
|
|
/// </summary>
|
|
BR = 3,
|
|
|
|
/// <summary>
|
|
/// JP-Keyboard
|
|
/// </summary>
|
|
JP = 4,
|
|
|
|
/// <summary>
|
|
/// KR-Keyboard
|
|
/// </summary>
|
|
KR = 5
|
|
}
|
|
}
|