mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
18 lines
473 B
Dart
18 lines
473 B
Dart
|
import 'package:cake_wallet/exchange/trade_request.dart';
|
||
|
import 'package:cw_core/crypto_currency.dart';
|
||
|
|
||
|
class SideShiftRequest extends TradeRequest {
|
||
|
final CryptoCurrency depositMethod;
|
||
|
final CryptoCurrency settleMethod;
|
||
|
final String depositAmount;
|
||
|
final String settleAddress;
|
||
|
final String refundAddress;
|
||
|
|
||
|
SideShiftRequest(
|
||
|
{this.depositMethod,
|
||
|
this.settleMethod,
|
||
|
this.depositAmount,
|
||
|
this.settleAddress,
|
||
|
this.refundAddress,});
|
||
|
}
|