using RGB.NET.Devices.Corsair.Native; namespace RGB.NET.Devices.Corsair { /// /// Represents a generic information for a . /// public class CorsairHeadsetRGBDeviceInfo : CorsairRGBDeviceInfo { #region Constructors /// /// Internal constructor of managed . /// /// The index of the . /// The native -struct internal CorsairHeadsetRGBDeviceInfo(int deviceIndex, _CorsairDeviceInfo nativeInfo) : base(deviceIndex, Core.DeviceType.Headset, nativeInfo) { } #endregion } }