Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ClusterGetStatusEventArgs.cs
1using System;
2
4{
8 public class ClusterGetStatusEventArgs : EventArgs
9 {
10 private object status = null;
11
16 {
17 }
18
22 public object Status
23 {
24 get => this.status;
25 set => this.status = value;
26 }
27 }
28}
Event arguments for cluster get status events.
ClusterGetStatusEventArgs()
Event arguments for cluster get status events.