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