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