cake_wallet/lib/core/app_store.dart
2020-05-25 16:06:40 +03:00

12 lines
No EOL
200 B
Dart

import 'package:mobx/mobx.dart';
part 'app_store.g.dart';
class AppStore = AppStoreBase with _$AppStore;
abstract class AppStoreBase with Store {
// Sign Up
// Auth
// Wallet
// Settings
}