// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedMember.Global using RGB.NET.Core; using RGB.NET.Devices.CorsairLegacy.Native; namespace RGB.NET.Devices.CorsairLegacy; /// /// /// Represents a generic information for a . /// public class CorsairTouchbarRGBDeviceInfo : CorsairRGBDeviceInfo { #region Constructors /// /// /// Internal constructor of managed . /// /// The index of the . /// The native -struct internal CorsairTouchbarRGBDeviceInfo(int deviceIndex, _CorsairDeviceInfo nativeInfo) : base(deviceIndex, RGBDeviceType.Keypad, nativeInfo) { } #endregion }