mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 01:58:30 +00:00
30 lines
954 B
C#
30 lines
954 B
C#
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
using System;
|
|
using RGB.NET.Core;
|
|
|
|
namespace RGB.NET.Devices.Razer
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Represents a generic information for a <see cref="T:RGB.NET.Devices.Razer.RazerKeyboardRGBDevice" />.
|
|
/// </summary>
|
|
public class RazerKeyboardRGBDeviceInfo : RazerRGBDeviceInfo
|
|
{
|
|
#region Constructors
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Internal constructor of managed <see cref="T:RGB.NET.Devices.Razer.RazerKeyboardRGBDeviceInfo" />.
|
|
/// </summary>
|
|
/// <param name="deviceId">The Id of the <see cref="IRGBDevice"/>.</param>
|
|
/// <param name="model">The model of the <see cref="IRGBDevice"/>.</param>
|
|
internal RazerKeyboardRGBDeviceInfo(Guid deviceId, string model)
|
|
: base(deviceId, RGBDeviceType.Keyboard, model)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|