mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-27 14:09:50 +00:00
10 lines
302 B
Dart
10 lines
302 B
Dart
|
import 'package:cw_monero/monero_transaction_priority.dart';
|
||
|
import 'package:cw_core/output_info.dart';
|
||
|
|
||
|
class MoneroTransactionCreationCredentials {
|
||
|
MoneroTransactionCreationCredentials({this.outputs, this.priority});
|
||
|
|
||
|
final List<OutputInfo> outputs;
|
||
|
final MoneroTransactionPriority priority;
|
||
|
}
|