| 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 ZcashTransactionCredentials { |
| 6 | ZcashTransactionCredentials({ |
| 7 | required this.outputs, |
| 8 | required this.priority, |
| 9 | required this.currency, |
| 10 | }); |
| 11 | |
| 12 | final List<OutputInfo> outputs; |
| 13 | final MoneroTransactionPriority priority; |
| 14 | final CryptoCurrency currency; |
| 15 | } |