mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
21 lines
527 B
Dart
21 lines
527 B
Dart
import 'package:cake_wallet/exchange/trade_request.dart';
|
|
import 'package:cw_core/crypto_currency.dart';
|
|
|
|
class TrocadorRequest extends TradeRequest {
|
|
TrocadorRequest(
|
|
{required this.from,
|
|
required this.to,
|
|
required this.address,
|
|
required this.fromAmount,
|
|
required this.toAmount,
|
|
required this.refundAddress,
|
|
required this.isReverse});
|
|
|
|
CryptoCurrency from;
|
|
CryptoCurrency to;
|
|
String address;
|
|
String fromAmount;
|
|
String toAmount;
|
|
String refundAddress;
|
|
bool isReverse;
|
|
}
|