mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
17 lines
360 B
Dart
17 lines
360 B
Dart
|
|
||
|
class PendingTransactionDescription {
|
||
|
PendingTransactionDescription({
|
||
|
required this.amount,
|
||
|
required this.fee,
|
||
|
required this.hash,
|
||
|
required this.hex,
|
||
|
required this.txKey,
|
||
|
required this.pointerAddress});
|
||
|
|
||
|
final int amount;
|
||
|
final int fee;
|
||
|
final String hash;
|
||
|
final String hex;
|
||
|
final String txKey;
|
||
|
final int pointerAddress;
|
||
|
}
|