Updated Module engine
This commit is contained in:
@@ -7,13 +7,11 @@ public class ModuleData
|
||||
public string ModuleName { get; set; }
|
||||
public string ModulePath { get; set; }
|
||||
public bool IsEnabled { get; set; } = true;
|
||||
public IDictionary<string, string> MethodMapping { get; set; }
|
||||
|
||||
public ModuleData(string moduleName, string modulePath, IDictionary<string, string> methodMapping, bool isEnabled)
|
||||
public ModuleData(string moduleName, string modulePath, bool isEnabled)
|
||||
{
|
||||
ModuleName = moduleName;
|
||||
ModulePath = modulePath;
|
||||
MethodMapping = methodMapping;
|
||||
IsEnabled = isEnabled;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user