// ReSharper disable UnusedMember.Global // ReSharper disable InconsistentNaming namespace RGB.NET.Devices.Logitech { /// /// Contains list of available physical layouts for logitech keyboards. /// public enum LogitechPhysicalKeyboardLayout { /// /// US-Keyboard /// US = 1, /// /// UK-Keyboard /// UK = 2, /// /// BR-Keyboard /// BR = 3, /// /// JP-Keyboard /// JP = 4, /// /// KR-Keyboard /// KR = 5 } }