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