using System;
namespace RGB.NET.Devices.Novation.Attributes;
///
///
/// Specifies the device-id of a field.
///
[AttributeUsage(AttributeTargets.Field)]
public sealed class DeviceIdAttribute : Attribute
{
#region Properties & Fields
///
/// Gets the Id.
///
public string Id { get; }
#endregion
#region Constructors
///
///
/// Initializes a new instance of the class.
///
/// The id.
public DeviceIdAttribute(string id)
{
this.Id = id;
}
#endregion
}