correct constructor parameter names for plugin features

This commit is contained in:
Pilzinsel64
2024-07-16 10:14:45 +02:00
parent 8043d1fcf3
commit 4bb72c63b2
7 changed files with 15 additions and 16 deletions

View File

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