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