1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00
RGB.NET/RGB.NET.Devices.OpenRGB/Generic/OpenRGBGenericDeviceInfo.cs
2022-09-25 15:25:20 +01:00

19 lines
640 B
C#

using RGB.NET.Core;
using System.Collections.Generic;
using OpenRGBDevice = OpenRGB.NET.Models.Device;
namespace RGB.NET.Devices.OpenRGB
{
/// <summary>
/// Represents generic information for an OpenRGB Device
/// </summary>
public class OpenRGBGenericDeviceInfo : AbstractOpenRGBDeviceInfo
{
/// <summary>
/// Initializes a new instance of <see cref="OpenRGBGenericDeviceInfo"/>.
/// </summary>
/// <param name="device">The OpenRGB device containing device-specific information.</param>
public OpenRGBGenericDeviceInfo(OpenRGBDevice device) : base(device)
{ }
}
}