29a81c1c96
(cherry picked from commit 05eb5a5b9da2ab3fba64ea08591fd787a736549e)
9 lines
221 B
Dart
9 lines
221 B
Dart
import 'package:jmap_dart_client/jmap/core/session/session.dart';
|
|
|
|
abstract class SessionDataSource {
|
|
Future<Session> getSession();
|
|
|
|
Future<void> storeSession(Session session);
|
|
|
|
Future<Session> getStoredSession();
|
|
} |