mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
17 lines
389 B
Dart
17 lines
389 B
Dart
|
import 'package:mobx/mobx.dart';
|
||
|
import 'package:cake_wallet/core/wallet_base.dart';
|
||
|
import 'package:cake_wallet/store/authentication_store.dart';
|
||
|
|
||
|
part 'app_store.g.dart';
|
||
|
|
||
|
class AppStore = AppStoreBase with _$AppStore;
|
||
|
|
||
|
abstract class AppStoreBase with Store {
|
||
|
AppStoreBase({this.authenticationStore});
|
||
|
|
||
|
AuthenticationStore authenticationStore;
|
||
|
|
||
|
@observable
|
||
|
WalletBase wallet;
|
||
|
}
|