Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ValueDetail.cs
2
4{
8 public abstract class ValueDetail : TokenEventDetail
9 {
15 : base(Event)
16 {
17 this.Value = Event.Value;
18 this.Currency = Event.Currency;
19 }
20
24 public decimal Value { get; }
25
29 public string Currency { get; }
30 }
31}
Abstract base class for token events with monetary value.
decimal Value
Latest value of token
string Currency
Currency used to represent latest value.