Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AccountEventsEventArgs.cs
2
3namespace EDaler.Events
4{
9 {
10 private readonly AccountEvent[] events;
11 private readonly bool more;
12
14 : base(e)
15 {
16 this.events = Events;
17 this.more = More;
18 }
19
23 public AccountEvent[] Events => this.events;
24
28 public bool More => this.more;
29 }
30}
Account event
Definition: AccountEvent.cs:16
Account events event arguments.
bool More
If there are more account events available.
AccountEvent[] Events
Account events.
Event arguments for responses to IQ queries.