cake_wallet/lib/src/domain/exchange/xmrto/xmrto_trade_request.dart

19 lines
535 B
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
import 'package:flutter/foundation.dart';
import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
import 'package:cake_wallet/src/domain/exchange/trade_request.dart';
class XMRTOTradeRequest extends TradeRequest {
XMRTOTradeRequest(
{@required this.from,
@required this.to,
@required this.amount,
@required this.address,
@required this.refundAddress});
2020-01-08 12:26:34 +00:00
final CryptoCurrency from;
final CryptoCurrency to;
final String amount;
final String address;
final String refundAddress;
2020-01-04 19:31:52 +00:00
}