Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
BalanceEventArgs.cs
1using System;
2
3namespace EDaler.Events
4{
8 public class BalanceEventArgs : EventArgs
9 {
10 private readonly Balance balance;
11
13 : base()
14 {
15 this.balance = Balance;
16 }
17
21 public Balance Balance => this.balance;
22 }
23}
Contains information about a balance.
Definition: Balance.cs:11
Wallet balance event arguments.