1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00
CUE.NET/Devices/IDeviceInfo.cs

23 lines
516 B
C#

using CUE.NET.Devices.Generic.Enums;
namespace CUE.NET.Devices
{
public interface IDeviceInfo
{
/// <summary>
/// Gets the device type.
/// </summary>
CorsairDeviceType Type { get; }
/// <summary>
/// Gets the device model (like “K95RGB”).
/// </summary>
string Model { get; }
/// <summary>
/// Gets flags, which describe device capabilities.
/// </summary>
CorsairDeviceCaps CapsMask { get; }
}
}