CakeWallet/lib/exchange/exchange_pair.dart

10 lines
222 B
Dart
Raw Normal View History

2020-09-21 14:50:26 +03:00
import 'package:cake_wallet/entities/crypto_currency.dart';
2020-01-04 21:31:52 +02:00
class ExchangePair {
2020-01-08 14:26:34 +02:00
ExchangePair({this.from, this.to, this.reverse = true});
2020-01-04 21:31:52 +02:00
final CryptoCurrency from;
final CryptoCurrency to;
final bool reverse;
2020-01-08 14:26:34 +02:00
}