elsa-core/samples/console/Elsa.Samples.ConsoleApp.JsonWorkflows/HelloWorld.json
Sipke Schoorstra 687e1fa3af Update HelloWorld.json to simplify workflow configuration
Removed unnecessary ID fields from HelloWorld.json to streamline the structure. This change focuses on reducing clutter and making the configuration easier to read and maintain.
2024-07-25 19:26:30 +02:00

20 lines
367 B
JSON

{
"name": "Hello World",
"root": {
"id": "Flowchart1",
"type": "Elsa.Flowchart",
"activities": [
{
"id": "WriteLine1",
"type": "Elsa.WriteLine",
"text": {
"typeName": "String",
"expression": {
"type": "Literal",
"value": "Hello World!"
}
}
}
]
}
}