Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
GenInfo.cs
2{
6 public class GenInfo
7 {
13 public GenInfo(string Name, string Value)
14 {
15 this.Name = Name;
16 this.Value = Value;
17 }
18
22 public string Name { get; internal set; }
23
27 public string Value { get; internal set; }
28 }
29}