mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-12 17:48:31 +00:00
22 lines
509 B
C#
22 lines
509 B
C#
// ReSharper disable InconsistentNaming
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
using System.ComponentModel;
|
|
|
|
#pragma warning disable 1591 // Missing XML comment for publicly visible type or member
|
|
|
|
namespace RGB.NET.Devices.Wooting.Enum
|
|
{
|
|
/// <summary>
|
|
/// Contains a list of available device-indexes.
|
|
/// </summary>
|
|
public enum WootingDevicesIndexes
|
|
{
|
|
[Description("Wooting One")]
|
|
WootingOne = 0,
|
|
|
|
[Description("Wooting Two")]
|
|
WootingTwo = 1
|
|
}
|
|
}
|