15 lines
381 B
C#
15 lines
381 B
C#
using System;
|
|
|
|
namespace Prise.Plugin
|
|
{
|
|
[System.AttributeUsage(System.AttributeTargets.Class, Inherited = false, AllowMultiple = false)]
|
|
public sealed class PluginAttribute : System.Attribute
|
|
{
|
|
Type pluginType;
|
|
public Type PluginType
|
|
{
|
|
get { return this.pluginType; }
|
|
set { this.pluginType = value; }
|
|
}
|
|
}
|
|
} |