mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
12 lines
240 B
Dart
12 lines
240 B
Dart
import 'package:cw_core/crypto_currency.dart';
|
|
|
|
class ExchangePair {
|
|
ExchangePair({
|
|
required this.from,
|
|
required this.to,
|
|
this.reverse = true});
|
|
|
|
final CryptoCurrency from;
|
|
final CryptoCurrency to;
|
|
final bool reverse;
|
|
}
|