876cc368b0
(cherry picked from commit e0ace535d5f3af71eb13598d92524caf2c6d9bbf)
9 lines
264 B
Dart
9 lines
264 B
Dart
import 'package:model/account/personal_account.dart';
|
|
|
|
abstract class AccountDatasource {
|
|
Future<PersonalAccount> getCurrentAccount();
|
|
|
|
Future<void> setCurrentAccount(PersonalAccount newCurrentAccount);
|
|
|
|
Future<void> deleteCurrentAccount(String accountId);
|
|
} |