// ReSharper disable InconsistentNaming
// ReSharper disable UnusedMember.Global
using System;
namespace CUE.NET.Devices.Generic.Enums
{
///
/// Contains list of 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
};
}