12 lines
256 B
C#
12 lines
256 B
C#
|
|
namespace BotSharp.Abstraction.Plugins;
|
||
|
|
|
||
|
|
public class PluginDependencyAttribute : Attribute
|
||
|
|
{
|
||
|
|
public string[] PluginNames { get; set; }
|
||
|
|
|
||
|
|
public PluginDependencyAttribute(params string[] pluginNames)
|
||
|
|
{
|
||
|
|
PluginNames = pluginNames;
|
||
|
|
}
|
||
|
|
}
|