// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
using CUE.NET.Devices.Generic;
using CUE.NET.Native;
namespace CUE.NET.Devices.Mousemat
{
///
/// Represents specific information for a CUE Mousemat.
///
public class CorsairMousematDeviceInfo : GenericDeviceInfo
{
#region Constructors
///
/// Internal constructor of managed .
///
/// The native -struct
internal CorsairMousematDeviceInfo(_CorsairDeviceInfo nativeInfo)
: base(nativeInfo)
{
}
#endregion
}
}