using System.Collections.Generic; using RGB.NET.Core; using RGB.NET.Devices.Corsair.Native; namespace RGB.NET.Devices.Corsair { /// /// /// Represents a generic information for a . /// public class CorsairMousepadRGBDeviceInfo : CorsairRGBDeviceInfo { #region Constructors /// /// /// Internal constructor of managed . /// /// The index if the . /// The native -struct /// A dictionary containing counters to create unique names for equal devices models. internal CorsairMousepadRGBDeviceInfo(int deviceIndex, _CorsairDeviceInfo nativeInfo, Dictionary modelCounter) : base(deviceIndex, RGBDeviceType.Mousepad, nativeInfo, modelCounter) { } #endregion } }