using System.Globalization; using RGB.NET.Core; using RGB.NET.Devices.Wooting.Enum; using RGB.NET.Devices.Wooting.Generic; namespace RGB.NET.Devices.Wooting.Keyboard { /// /// /// Represents a generic information for a . /// public class WootingKeyboardRGBDeviceInfo : WootingRGBDeviceInfo { #region Properties & Fields /// /// Gets the of the . /// public WootingPhysicalKeyboardLayout PhysicalLayout { get; } #endregion #region Constructors /// /// /// Internal constructor of managed . /// /// The index of the . /// The of the . internal WootingKeyboardRGBDeviceInfo(WootingDevicesIndexes deviceIndex, WootingPhysicalKeyboardLayout physicalKeyboardLayout) : base(RGBDeviceType.Keyboard, deviceIndex) { this.PhysicalLayout = physicalKeyboardLayout; } #endregion } }