Files
workavia-mail-front/lib/features/login/data/datasource/authentication_datasource.dart
T
dab246 876cc368b0 Use TupleKey(ObjectKey-AccountId-UserName) to store data to hive
(cherry picked from commit e0ace535d5f3af71eb13598d92524caf2c6d9bbf)
2023-05-08 13:03:51 +07:00

7 lines
290 B
Dart

import 'package:jmap_dart_client/jmap/core/user_name.dart';
import 'package:model/account/password.dart';
import 'package:model/user/user_profile.dart';
abstract class AuthenticationDataSource {
Future<UserProfile> authenticationUser(Uri baseUrl, UserName userName, Password password);
}