mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
17 lines
359 B
C#
17 lines
359 B
C#
// ReSharper disable InconsistentNaming
|
|
|
|
using System;
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
namespace RGB.NET.Devices.Logitech;
|
|
|
|
[Flags]
|
|
public enum LogitechDeviceCaps
|
|
{
|
|
None = 0,
|
|
Monochrome = 1 << 0,
|
|
DeviceRGB = 1 << 1,
|
|
PerKeyRGB = 1 << 2,
|
|
All = Monochrome | DeviceRGB | PerKeyRGB
|
|
} |