1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 09:08:34 +00:00
CUE.NET/Wrapper/IDeviceInfo.cs

21 lines
464 B
C#

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