Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ValidDays.cs
2
4{
8 public class ValidDays : Value
9 {
13 public ValidDays()
14 : base()
15 {
16 }
17
21 public override string LocalName => nameof(ValidDays);
22
27 public override IStateMachineNode Create()
28 {
29 return new ValidDays();
30 }
31 }
32}
Defines number of days payment is valid, before it must be processed.
Definition: ValidDays.cs:9
override IStateMachineNode Create()
Creates a new node of the corresponding type.
Definition: ValidDays.cs:27
ValidDays()
Defines number of days payment is valid, before it must be processed.
Definition: ValidDays.cs:13
Abstract base class for nodes with a value.
Definition: Value.cs:13