Exemple #1
0
 public PatchRequest(string script, PatchRequestType type)
 {
     Script = script;
     Type   = type;
 }
Exemple #2
0
 public PatchRequest(string script, PatchRequestType type, Dictionary <string, DeclaredFunction> functions = null)
 {
     Script     = script;
     _functions = functions;
     Type       = type;
 }