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