using RGB.NET.Core; namespace RGB.NET.Devices.CoolerMaster { /// /// /// Represents a generic information for a . /// public class CoolerMasterKeyboardRGBDeviceInfo : CoolerMasterRGBDeviceInfo { #region Properties & Fields /// /// Gets the of the . /// public CoolerMasterPhysicalKeyboardLayout PhysicalLayout { get; } #endregion #region Constructors /// /// /// Internal constructor of managed . /// /// The index of the . /// The of the . /// The of the layout this keyboard is using internal CoolerMasterKeyboardRGBDeviceInfo(CoolerMasterDevicesIndexes deviceIndex, CoolerMasterPhysicalKeyboardLayout physicalKeyboardLayout) : base(RGBDeviceType.Keyboard, deviceIndex) { this.PhysicalLayout = physicalKeyboardLayout; } #endregion } }