mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
27 lines
850 B
C#
27 lines
850 B
C#
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.RazerMouseRGBDevice" />.
|
|
/// </summary>
|
|
public class RazerMouseRGBDeviceInfo : RazerRGBDeviceInfo
|
|
{
|
|
#region Constructors
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Internal constructor of managed <see cref="T:RGB.NET.Devices.Razer.RazerMouseRGBDeviceInfo" />.
|
|
/// </summary>
|
|
/// <param name="deviceId">The Id of the <see cref="IRGBDevice"/>.</param>
|
|
/// <param name="model">The model of the <see cref="IRGBDevice"/>.</param>
|
|
internal RazerMouseRGBDeviceInfo(Guid deviceId, string model)
|
|
: base(deviceId, RGBDeviceType.Mouse, model)
|
|
{ }
|
|
|
|
#endregion
|
|
}
|
|
}
|