Files
HopFrame/src/HopFrame.Web/Plugins/Annotations/PluginConfiguratorAttribute.cs
2025-02-02 19:06:41 +01:00

9 lines
316 B
C#

namespace HopFrame.Web.Plugins.Annotations;
/// <summary>
/// Configures the method as a plugin configurator, so the method gets called, when the plugin is registered.
/// Only works on static methods
/// </summary>
[AttributeUsage(AttributeTargets.Method)]
public class PluginConfiguratorAttribute : Attribute;