mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
01150ef2a7
* hv * Change build version
9 lines
300 B
Dart
9 lines
300 B
Dart
import 'package:cw_core/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;
|
|
}
|