Example #1
0
 public PlatformAction(IActPluginExecution Action, Dictionary <string, object> InputParameters)
 {
     ActionType  = Action.GetName();
     InputParams = InputParameters;
 }
Example #2
0
 public PlatformAction(IActPluginExecution Action)
 {
     ActionType  = Action.GetName();
     InputParams = new Dictionary <string, object>();
 }