mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 09:38:31 +00:00
16 lines
484 B
C#
16 lines
484 B
C#
using RGB.NET.Core;
|
|
using RGB.NET.Devices.Wooting.Generic;
|
|
using RGB.NET.Devices.Wooting.Native;
|
|
|
|
namespace RGB.NET.Devices.Wooting.Keypad;
|
|
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.Wooting.Keypad.WootingKeypadRGBDevice" />.
|
|
/// </summary>
|
|
public sealed class WootingKeypadRGBDeviceInfo : WootingRGBDeviceInfo
|
|
{
|
|
internal WootingKeypadRGBDeviceInfo(string model, string name)
|
|
: base(RGBDeviceType.Keypad, model, name)
|
|
{ }
|
|
}
|