// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
namespace CUE.NET.Enums
{
///
/// Contains list of device capabilities
///
public enum CorsairDeviceCaps
{
///
/// For devices that do not support any SDK functions
///
CDC_None = 0,
///
/// For devices that has controlled lighting
///
CDC_Lighting = 1
};
}