using RGB.NET.Core; namespace RGB.NET.Devices.Novation { /// /// /// Represents a generic information for a . /// public class NovationLaunchpadRGBDeviceInfo : NovationRGBDeviceInfo { #region Constructors /// /// /// Internal constructor of managed . /// /// The represented device model. /// /// The of the . internal NovationLaunchpadRGBDeviceInfo(string model, int deviceId, NovationColorCapabilities colorCapabilities) : base(RGBDeviceType.LedMatrix, model, deviceId, colorCapabilities) { } #endregion } }