cake_wallet/lib/src/domain/exchange/exchange_pair.dart
2020-01-04 21:31:52 +02:00

9 lines
No EOL
230 B
Dart

import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
class ExchangePair {
final CryptoCurrency from;
final CryptoCurrency to;
final bool reverse;
ExchangePair({this.from, this.to, this.reverse = true});
}