mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
19 lines
569 B
C#
19 lines
569 B
C#
using RGB.NET.Core;
|
|
using System.Collections.Generic;
|
|
using OpenRGBDevice = OpenRGB.NET.Models.Device;
|
|
|
|
namespace RGB.NET.Devices.OpenRGB
|
|
{
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.Wooting.Keyboard.WootingKeyboardRGBDevice" />.
|
|
/// </summary>
|
|
public class OpenRGBZoneDeviceInfo : AbstractOpenRGBDeviceInfo
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="device"></param>
|
|
public OpenRGBZoneDeviceInfo(OpenRGBDevice device) : base(device)
|
|
{ }
|
|
}
|
|
} |