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