// ReSharper disable InconsistentNaming // ReSharper disable UnusedMember.Global using System; namespace RGB.NET.Devices.Corsair { /// /// Contains list of corsair device capabilities. /// [Flags] public enum CorsairDeviceCaps { /// /// For devices that do not support any SDK functions. /// None = 0, /// /// For devices that has controlled lighting. /// Lighting = 1 }; }