1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 10:08:31 +00:00
RGB.NET/RGB.NET.Devices.Wooting/Native/_WootingDeviceInfo.cs
2020-02-25 22:31:14 +01:00

22 lines
559 B
C#

using System.Runtime.InteropServices;
using RGB.NET.Devices.Wooting.Enum;
namespace RGB.NET.Devices.Wooting.Native
{
[StructLayout(LayoutKind.Sequential)]
internal struct _WootingDeviceInfo
{
internal bool Connected { get; private set; }
internal string Model { get; private set; }
internal byte MaxRows { get; private set; }
internal byte MaxColumns { get; private set; }
internal byte KeycodeLimit { get; private set; }
internal WootingDeviceType DeviceType { get; private set; }
}
}