mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
10 lines
320 B
Dart
10 lines
320 B
Dart
|
import 'package:cw_core/monero_transaction_priority.dart';
|
||
|
import 'package:cw_core/output_info.dart';
|
||
|
|
||
|
class WowneroTransactionCreationCredentials {
|
||
|
WowneroTransactionCreationCredentials({required this.outputs, required this.priority});
|
||
|
|
||
|
final List<OutputInfo> outputs;
|
||
|
final MoneroTransactionPriority priority;
|
||
|
}
|