cake_wallet/lib/exchange/exchange_pair.dart

13 lines
240 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 {
2022-10-12 17:09:57 +00:00
ExchangePair({
required this.from,
required this.to,
this.reverse = true});
2020-01-08 12:26:34 +00:00
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
}