mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
26 lines
736 B
C#
26 lines
736 B
C#
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.DynamicLighting;
|
|
|
|
/// <inheritdoc cref="DynamicLightingRGBDeviceInfo" />
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.DynamicLighting.DynamicLightingKeyboardRGBDevice" />.
|
|
/// </summary>
|
|
public sealed class DynamicLightingKeyboardRGBDeviceInfo : DynamicLightingRGBDeviceInfo, IKeyboardDeviceInfo
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <inheritdoc/>
|
|
public KeyboardLayoutType Layout => KeyboardLayoutType.Unknown;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
/// <inheritdoc />
|
|
internal DynamicLightingKeyboardRGBDeviceInfo(LampArrayInfo lampArrayInfo)
|
|
: base(RGBDeviceType.Keyboard, lampArrayInfo)
|
|
{ }
|
|
|
|
#endregion
|
|
} |