using System; namespace RGB.NET.Devices.Novation.Attributes; /// /// /// Specifies the led id mapping of a field. /// [AttributeUsage(AttributeTargets.Field)] internal sealed class LedIdMappingAttribute : Attribute { #region Properties & Fields /// /// Gets the led id mapping. /// internal LedIdMappings LedIdMapping { get; } #endregion #region Constructors /// /// /// Initializes a new instance of the class. /// /// The led id mapping. internal LedIdMappingAttribute(LedIdMappings ledIdMapping) { this.LedIdMapping = ledIdMapping; } #endregion }