1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-12 17:48:31 +00:00

14 lines
347 B
C#

// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
namespace RGB.NET.Devices.CorsairLegacy;
/// <summary>
/// Represents an SDK access mode.
/// </summary>
public enum CorsairAccessMode
{
ExclusiveLightingControl = 0
};