using System;
using RGB.NET.Core;
namespace RGB.NET.Devices.Razer
{
///
///
/// Represents a generic information for a .
///
public class RazerMouseRGBDeviceInfo : RazerRGBDeviceInfo
{
#region Constructors
///
///
/// Internal constructor of managed .
///
/// The Id of the .
/// The model of the .
internal RazerMouseRGBDeviceInfo(Guid deviceId, string model)
: base(deviceId, RGBDeviceType.Mouse, model)
{ }
#endregion
}
}