correct constructor parameter names for plugin features
This commit is contained in:
@@ -14,11 +14,11 @@ public abstract class PluginModule<TPluginModuleUI> : PluginModuleBase where TPl
|
||||
set => base.Icon = value;
|
||||
}
|
||||
|
||||
protected PluginModule(string moduleType, string moduleIdentifier) : base(moduleType, moduleIdentifier)
|
||||
protected PluginModule(string type, string identifier) : base(type, identifier)
|
||||
{
|
||||
}
|
||||
|
||||
protected PluginModule(string moduleType, string moduleIdentifier, string moduleName) : base(moduleType, moduleIdentifier, moduleName)
|
||||
protected PluginModule(string type, string identifier, string? name) : base(type, identifier, name)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user