Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
WalletNavigationArgs.cs
1using EDaler;
3
5{
10 {
11 private readonly Balance? balance;
12 private readonly decimal pendingAmount;
13 private readonly string? pendingCurrency;
14 private readonly EDaler.PendingPayment[]? pendingPayments;
15 private readonly EDaler.AccountEvent[]? events;
16
17 private readonly bool more;
18
23 {
24 }
25
37 {
38 this.balance = Balance;
39 this.pendingAmount = PendingAmount;
40 this.pendingCurrency = PendingCurrency;
41 this.pendingPayments = PendingPayments;
42 this.events = Events;
43 this.more = More;
44 }
45
49 public Balance? Balance => this.balance;
50
54 public decimal PendingAmount => this.pendingAmount;
55
59 public string? PendingCurrency => this.pendingCurrency;
60
64 public EDaler.PendingPayment[]? PendingPayments => this.pendingPayments;
65
69 public EDaler.AccountEvent[]? Events => this.events;
70
74 public bool More => this.more;
75 }
76}
Account event
Definition: AccountEvent.cs:16
Contains information about a balance.
Definition: Balance.cs:11
Contains information about a pending payment.
An base class holding page specific navigation parameters.
Holds navigation parameters specific to the eDaler wallet.
WalletNavigationArgs(Balance Balance, decimal PendingAmount, string PendingCurrency, EDaler.PendingPayment[] PendingPayments, EDaler.AccountEvent[] Events, bool More)
Creates a new instance of the WalletNavigationArgs class.
EDaler.? PendingPayment[] PendingPayments
Details about pending payments.
WalletNavigationArgs()
Creates a new instance of the WalletNavigationArgs class.