stack_wallet/lib/services/coins/tezos/api/tezos_transaction.dart

19 lines
453 B
Dart
Raw Normal View History

2023-08-24 17:51:48 +00:00
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,
});
}