cake_wallet/cw_zano/lib/zano_transaction_credentials.dart

13 lines
430 B
Dart
Raw Normal View History

2024-03-16 10:55:03 +00:00
import 'package:cw_core/crypto_currency.dart';
2023-10-02 14:17:35 +00:00
import 'package:cw_core/monero_transaction_priority.dart';
import 'package:cw_core/output_info.dart';
class ZanoTransactionCredentials {
2024-03-16 10:55:03 +00:00
ZanoTransactionCredentials({required this.outputs, required this.priority, required this.currency});
2023-10-02 14:17:35 +00:00
final List<OutputInfo> outputs;
final MoneroTransactionPriority priority;
2024-03-16 10:55:03 +00:00
final CryptoCurrency currency;
//final String assetType;
2023-10-02 14:17:35 +00:00
}