We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb00c95 commit f5d1d61Copy full SHA for f5d1d61
README.md
@@ -25,6 +25,28 @@ public class MyWorkflow : IWorkflow
25
}
26
```
27
28
+## JSON Workflow Definitions
29
+
30
+Define your workflows in JSON
31
32
+```json
33
+{
34
+ "Id": "HelloWorld",
35
+ "Version": 1,
36
+ "Steps": [
37
+ {
38
+ "Id": "Hello",
39
+ "StepType": "MyApp.HelloWorld, MyApp",
40
+ "NextStepId": "Bye"
41
+ },
42
43
+ "Id": "Bye",
44
+ "StepType": "MyApp.GoodbyeWorld, MyApp"
45
+ }
46
+ ]
47
+}
48
+```
49
50
### Sample use cases
51
52
* New user workflow
0 commit comments