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

@@ -18,7 +18,7 @@ namespace Pilz.Plugins.Advanced
public bool Visible { get; set; } = true;
public bool AllowEmbedding { get; set; } = true;
protected PluginModule(string moduleType, string moduleName) : base(moduleType, moduleName)
protected PluginModule(string moduleType, string moduleIdentifier, string moduleName) : base(moduleType, moduleIdentifier, moduleName)
{
}