mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-18 02:07:37 +00:00
9 lines
No EOL
230 B
Dart
9 lines
No EOL
230 B
Dart
import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
|
|
|
|
class ExchangePair {
|
|
final CryptoCurrency from;
|
|
final CryptoCurrency to;
|
|
final bool reverse;
|
|
|
|
ExchangePair({this.from, this.to, this.reverse = true});
|
|
} |