Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ValueEventItem.cs
2
4{
9 public abstract class ValueEventItem(TokenValueEvent Event) : EventItem(Event)
10 {
11 private readonly TokenValueEvent @event = Event;
12
16 public string Currency => this.@event.Currency;
17
21 public decimal Value => this.@event.Value;
22 }
23}
Abstract base class for token events with monetary value.
string Currency
Currency used to represent latest value.
abstract class ValueEventItem(TokenValueEvent Event)
Represents a token value event.