1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00
RGB.NET/RGB.NET.Devices.SteelSeries/Enum/SteelSeriesDeviceType.cs

24 lines
403 B
C#

namespace RGB.NET.Devices.SteelSeries
{
public enum SteelSeriesDeviceType
{
[APIName("rgb-per-key-zones")]
PerKey,
[APIName("rgb-1-zone")]
OneZone,
[APIName("rgb-2-zone")]
TwoZone,
[APIName("rgb-3-zone")]
ThreeZone,
[APIName("rgb-4-zone")]
FourZone,
[APIName("rgb-5-zone")]
FiveZone
}
}