Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
SystemMultiStepConfiguration.cs
1using System;
2using System.Collections.Generic;
3using System.Threading.Tasks;
7
9{
14 {
15 private int step = 0;
16
20 [DefaultValue(0)]
21 public int Step
22 {
23 get => this.step;
24 set => this.step = value;
25 }
26 }
27}
Abstract base class for system configurations.
Abstract base class for multi-step system configurations.