1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00
RGB.NET/RGB.NET.Devices.OpenRGB/PerZone/OpenRGBZoneDeviceInfo.cs
2022-09-25 15:25:20 +01:00

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)
{ }
}
}