add feature identifier

This commit is contained in:
2023-12-14 07:55:59 +01:00
parent e1618da170
commit 6e6eb6b8f6
5 changed files with 63 additions and 13 deletions

View File

@@ -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)
{
}