2023-01-14 00:07:27 +00:00
|
|
|
import 'package:stackwallet/models/buy/response_objects/crypto.dart';
|
|
|
|
import 'package:stackwallet/models/buy/response_objects/fiat.dart';
|
2023-01-13 02:21:19 +00:00
|
|
|
// import 'package:stackwallet/models/buy/response_objects/pair.dart';
|
|
|
|
|
2023-01-13 19:14:56 +00:00
|
|
|
class SimplexSupportedCurrencies {
|
2023-01-14 00:07:27 +00:00
|
|
|
List<Crypto> supportedCryptos = [];
|
|
|
|
List<Fiat> supportedFiats = [];
|
2023-01-13 02:21:19 +00:00
|
|
|
|
2023-01-14 00:07:27 +00:00
|
|
|
void updateSupportedCryptos(List<Crypto> newCryptos) {
|
2023-01-13 02:21:19 +00:00
|
|
|
supportedCryptos = newCryptos;
|
|
|
|
}
|
|
|
|
|
2023-01-14 00:07:27 +00:00
|
|
|
void updateSupportedFiats(List<Fiat> newFiats) {
|
2023-01-13 02:21:19 +00:00
|
|
|
supportedFiats = newFiats;
|
|
|
|
}
|
|
|
|
}
|