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