add feature identifier
This commit is contained in:
@@ -9,11 +9,11 @@ namespace Pilz.Plugins.Advanced
|
||||
{
|
||||
public abstract class PluginFunction : PluginFeature
|
||||
{
|
||||
protected PluginFunction(string functionType) : base(functionType)
|
||||
protected PluginFunction(string functionType, string functionIdentifier) : base(functionType, functionIdentifier)
|
||||
{
|
||||
}
|
||||
|
||||
protected PluginFunction(string functionType, string? functionName) : base(functionType, functionName)
|
||||
protected PluginFunction(string functionType, string functionIdentifier, string? functionName) : base(functionType, functionIdentifier, functionName)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user