mirror of
https://github.com/hmalik144/easy_cc_flutter.git
synced 2025-12-10 03:05:34 +00:00
6 lines
177 B
Dart
6 lines
177 B
Dart
import '../prefs/CurrencyPair.dart';
|
|
|
|
abstract class Repository {
|
|
CurrencyPair getConversionPair();
|
|
Future<void> setConversionPair(String fromCurrency, String toCurrency);
|
|
} |