mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 11:57:41 +00:00
16 lines
503 B
Dart
16 lines
503 B
Dart
import 'package:stackwallet/models/buy/response_objects/crypto.dart';
|
|
import 'package:stackwallet/models/buy/response_objects/fiat.dart';
|
|
// import 'package:stackwallet/models/buy/response_objects/pair.dart';
|
|
|
|
class SimplexSupportedCurrencies {
|
|
List<Crypto> supportedCryptos = [];
|
|
List<Fiat> supportedFiats = [];
|
|
|
|
void updateSupportedCryptos(List<Crypto> newCryptos) {
|
|
supportedCryptos = newCryptos;
|
|
}
|
|
|
|
void updateSupportedFiats(List<Fiat> newFiats) {
|
|
supportedFiats = newFiats;
|
|
}
|
|
}
|