mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 09:57:46 +00:00
18 lines
515 B
Dart
18 lines
515 B
Dart
import 'package:flutter/foundation.dart';
|
|
import 'package:cake_wallet/entities/crypto_currency.dart';
|
|
import 'package:cake_wallet/exchange/trade_request.dart';
|
|
|
|
class XMRTOTradeRequest extends TradeRequest {
|
|
XMRTOTradeRequest(
|
|
{@required this.from,
|
|
@required this.to,
|
|
@required this.amount,
|
|
@required this.address,
|
|
@required this.refundAddress});
|
|
|
|
final CryptoCurrency from;
|
|
final CryptoCurrency to;
|
|
final String amount;
|
|
final String address;
|
|
final String refundAddress;
|
|
}
|