Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
TokenDetail.cs
2{
6 public class TokenDetail
7 {
14 public TokenDetail(string Name, object Value, bool NoteCommand)
15 {
16 this.Name = Name;
17 this.Value = Value;
18 this.NoteCommand = NoteCommand;
19 }
20
21 public string Name { get; }
22 public object Value { get; }
23 public bool NoteCommand { get; }
24 }
25}