cake_wallet/lib/exchange/exchange_pair.dart
2020-09-21 14:50:26 +03:00

9 lines
222 B
Dart

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