mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 18:34:44 +00:00
19 lines
414 B
C#
19 lines
414 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials.Core.Plugins
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public sealed class PluginEntryPointAttribute : Attribute
|
|
{
|
|
private readonly string _uniqueKey;
|
|
|
|
public string UniqueKey {
|
|
get { return _uniqueKey; }
|
|
}
|
|
|
|
public PluginEntryPointAttribute(string key)
|
|
{
|
|
_uniqueKey = key;
|
|
}
|
|
}
|
|
} |