cake_wallet/lib/exchange/exchange_pair.dart

10 lines
209 B
Dart
Raw Normal View History

2021-12-24 12:37:24 +00:00
import 'package:cw_core/crypto_currency.dart';
2020-01-04 19:31:52 +00:00
class ExchangePair {
2020-01-08 12:26:34 +00:00
ExchangePair({this.from, this.to, this.reverse = true});
2020-01-04 19:31:52 +00:00
final CryptoCurrency from;
final CryptoCurrency to;
final bool reverse;
2020-01-08 12:26:34 +00:00
}