// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
using System;
namespace RGB.NET.Devices.CorsairLegacy;
///
/// Contains a 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,
///
/// For devices that provide current state through set of properties.
///
PropertyLookup = 2
};