Adds some additional help

This commit is contained in:
Neil Dorin
2020-04-03 18:01:08 -06:00
parent 703695e768
commit 3a101d89ea
3 changed files with 14 additions and 20 deletions

View File

@@ -1,19 +0,0 @@
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;
}
}
}