mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
12 lines
234 B
Dart
12 lines
234 B
Dart
|
import 'package:mobx/mobx.dart';
|
||
|
|
||
|
part 'seed_settings_store.g.dart';
|
||
|
|
||
|
class SeedSettingsStore = SeedSettingsStoreBase with _$SeedSettingsStore;
|
||
|
|
||
|
abstract class SeedSettingsStoreBase with Store {
|
||
|
|
||
|
@observable
|
||
|
String? passphrase;
|
||
|
}
|