mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-19 10:41:02 +00:00
19 lines
453 B
Dart
19 lines
453 B
Dart
|
class TezosTransaction {
|
||
|
final String hash;
|
||
|
final int height;
|
||
|
final int timestamp;
|
||
|
final int amountInMicroTez;
|
||
|
final int feeInMicroTez;
|
||
|
final String senderAddress;
|
||
|
final String receiverAddress;
|
||
|
|
||
|
TezosTransaction({
|
||
|
required this.hash,
|
||
|
required this.height,
|
||
|
required this.timestamp,
|
||
|
required this.amountInMicroTez,
|
||
|
required this.feeInMicroTez,
|
||
|
required this.senderAddress,
|
||
|
required this.receiverAddress,
|
||
|
});
|
||
|
}
|