mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-02 02:17:39 +00:00
11 lines
No EOL
273 B
Dart
11 lines
No EOL
273 B
Dart
import 'package:cake_wallet/src/domain/common/transaction_direction.dart';
|
|
|
|
abstract class TransactionInfo extends Object {
|
|
int amount;
|
|
TransactionDirection direction;
|
|
bool isPending;
|
|
DateTime date;
|
|
int height;
|
|
String amountFormatted();
|
|
String fiatAmount();
|
|
} |