// ReSharper disable MemberCanBePrivate.Global // ReSharper disable UnusedMember.Global using RGB.NET.Core; namespace RGB.NET.Devices.DynamicLighting; /// /// /// Represents a Dynamic Lighting Peripheral-device. /// public sealed class DynamicLightingPeripheralRGBDevice : DynamicLightingRGBDevice, IUnknownDevice { #region Properties & Fields /// protected override LedId ReferenceLedId => LedId.Unknown1; #endregion #region Constructors /// /// /// Initializes a new instance of the class. /// /// The meta data for this device. /// The queue used to update this device. internal DynamicLightingPeripheralRGBDevice(DynamicLightingPeripheralRGBDeviceInfo info, DynamicLightingDeviceUpdateQueue updateQueue) : base(info, updateQueue) { } #endregion }