using System;
namespace RGB.NET.Devices.Corsair;
///
/// iCUE-SDK: contains list of operations that can be applied to the property
///
[Flags]
public enum CorsairPropertyFlag
{
///
/// -
///
None = 0x00,
///
/// iCUE-SDK: describes readable property
///
CanRead = 0x01,
///
/// iCUE-SDK: describes writable property
///
CanWrite = 0x02,
///
/// iCUE-SDK: if flag is set, then index should be used to read/write multiple properties that share the same property identifier
///
Indexed = 0x04
}