pschelpdesk/Vendor/Prise.Plugin/PluginBootstrapperAttribute.cs
2024-11-04 20:45:34 +01:00

15 lines
389 B
C#

using System;
namespace Prise.Plugin
{
[System.AttributeUsage(System.AttributeTargets.Class, Inherited = false, AllowMultiple = true)]
public sealed class PluginBootstrapperAttribute : System.Attribute
{
Type pluginType;
public Type PluginType
{
get { return this.pluginType; }
set { this.pluginType = value; }
}
}
}