1
0
mirror of synced 2024-07-02 20:00:35 +00:00
MassiveKnob/Windows/MassiveKnob.Plugin/MassiveKnobPluginAttribute.cs
Mark van Renswoude dc0e761244 Implemented basic plugin architecture
Moving interface to WPF for easier integration
2021-02-21 14:04:24 +01:00

18 lines
448 B
C#

using System;
using JetBrains.Annotations;
// ReSharper disable once UnusedMember.Global - public API
namespace MassiveKnob.Plugin
{
/// <summary>
/// Attach this attribute to a class to register it as a Massive Knob plugin.
/// The class must implement IMassiveKnobPlugin.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
[MeansImplicitUse]
public class MassiveKnobPluginAttribute : Attribute
{
}
}