2020-01-04 21:31:52 +02:00
|
|
|
import 'package:flutter/foundation.dart';
|
2020-09-21 14:50:26 +03:00
|
|
|
import 'package:cake_wallet/entities/crypto_currency.dart';
|
|
|
|
import 'package:cake_wallet/exchange/trade_request.dart';
|
2020-01-04 21:31:52 +02:00
|
|
|
|
|
|
|
class XMRTOTradeRequest extends TradeRequest {
|
|
|
|
XMRTOTradeRequest(
|
|
|
|
{@required this.from,
|
|
|
|
@required this.to,
|
|
|
|
@required this.amount,
|
|
|
|
@required this.address,
|
|
|
|
@required this.refundAddress});
|
2020-01-08 14:26:34 +02:00
|
|
|
|
|
|
|
final CryptoCurrency from;
|
|
|
|
final CryptoCurrency to;
|
|
|
|
final String amount;
|
|
|
|
final String address;
|
|
|
|
final String refundAddress;
|
2020-01-04 21:31:52 +02:00
|
|
|
}
|