Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Success.cs
2{
7 {
11 public Success()
12 : base()
13 {
14 }
15
19 public override string LocalName => nameof(Success);
20
25 public override IStateMachineNode Create()
26 {
27 return new Success();
28 }
29 }
30}
Abstract base class for state machine nodes representing human-readable text.
Contains a human-readable success message.
Definition: Success.cs:7
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: Success.cs:25
Success()
Contains a human-readable success message.
Definition: Success.cs:11