mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
12 lines
430 B
Dart
12 lines
430 B
Dart
import 'package:cw_core/crypto_currency.dart';
|
|
import 'package:cw_core/monero_transaction_priority.dart';
|
|
import 'package:cw_core/output_info.dart';
|
|
|
|
class ZanoTransactionCredentials {
|
|
ZanoTransactionCredentials({required this.outputs, required this.priority, required this.currency});
|
|
|
|
final List<OutputInfo> outputs;
|
|
final MoneroTransactionPriority priority;
|
|
final CryptoCurrency currency;
|
|
//final String assetType;
|
|
}
|