Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
TokenTotalItem.cs
1using NeuroFeatures;
2
4{
9 public class TokenTotalItem(TokenTotal Total) : IUniqueItem
10 {
11 private readonly TokenTotal total = Total;
12
14 public string UniqueName => this.total.Currency;
15
19 public string Currency => this.total.Currency;
20
24 public int NrTokens => this.total.NrTokens;
25
29 public decimal Total => this.total.Total;
30 }
31}
Contains one token total, i.e. sum of token values, for a given currency.
Definition: TokenTotal.cs:7
string Currency
Currency
Definition: TokenTotal.cs:11