using CUE.NET.Enums;
namespace CUE.NET.Wrapper
{
public interface IDeviceInfo
{
CorsairDeviceType Type { get; }
//TODO DarthAffe 17.09.2015: This could be an Enum
///
/// Device model (like “K95RGB”).
///
string Model { get; }
///
/// Flags that describes device capabilities
///
CorsairDeviceCaps CapsMask { get; }
}
}