mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
21 lines
338 B
C#
21 lines
338 B
C#
namespace RGB.NET.Devices.SteelSeries
|
|
{
|
|
internal class APIName : System.Attribute
|
|
{
|
|
#region Properties & Fields
|
|
|
|
public string Name { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
public APIName(string name)
|
|
{
|
|
this.Name = name;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|