| 1 | import 'package:cw_core/crypto_currency.dart'; |
| 2 | import 'package:cw_core/monero_transaction_priority.dart'; |
| 3 | import 'package:cw_core/output_info.dart'; |
| 4 | |
| 5 | class ZanoTransactionCredentials { |
| 6 | ZanoTransactionCredentials( |
| 7 | {required this.outputs, required this.priority, required this.currency}); |
| 8 | |
| 9 | final List<OutputInfo> outputs; |
| 10 | final MoneroTransactionPriority priority; |
| 11 | final CryptoCurrency currency; |
| 12 | } |