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