mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
23 lines
498 B
C#
23 lines
498 B
C#
using CUE.NET.Devices.Generic.Enums;
|
|
|
|
namespace CUE.NET.Devices
|
|
{
|
|
public interface IDeviceInfo
|
|
{
|
|
/// <summary>
|
|
/// Device type
|
|
/// </summary>
|
|
CorsairDeviceType Type { get; }
|
|
|
|
/// <summary>
|
|
/// Device model (like “K95RGB”).
|
|
/// </summary>
|
|
string Model { get; }
|
|
|
|
/// <summary>
|
|
/// Flags that describes device capabilities
|
|
/// </summary>
|
|
CorsairDeviceCaps CapsMask { get; }
|
|
}
|
|
}
|