cake_wallet/lib/src/domain/exchange/exchange_pair.dart

10 lines
231 B
Dart
Raw Normal View History

2020-01-04 19:31:52 +00:00
import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
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
}