correct constructor parameter names for plugin features
This commit is contained in:
@@ -5,11 +5,11 @@ namespace Pilz.Plugins.Advanced;
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public abstract class PluginModuleBase : PluginFeature
|
||||
{
|
||||
protected PluginModuleBase(string moduleType, string moduleIdentifier) : base(moduleType, moduleIdentifier)
|
||||
protected PluginModuleBase(string type, string identifier) : base(type, identifier)
|
||||
{
|
||||
}
|
||||
|
||||
protected PluginModuleBase(string moduleType, string moduleIdentifier, string moduleName) : base(moduleType, moduleIdentifier, moduleName)
|
||||
protected PluginModuleBase(string type, string identifier, string? name) : base(type, identifier, name)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user