mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-26 21:50:27 +00:00
9 lines
235 B
Dart
9 lines
235 B
Dart
|
import 'package:cake_wallet/core/execution_state.dart';
|
||
|
|
||
|
abstract class WalletUnlockViewModel {
|
||
|
String get walletName;
|
||
|
String get password;
|
||
|
void setPassword(String password);
|
||
|
ExecutionState get state;
|
||
|
Future<void> unlock();
|
||
|
}
|