2024-09-16 20:26:14 +00:00
|
|
|
import 'package:immich_mobile/entities/user.entity.dart';
|
|
|
|
|
|
|
|
abstract interface class IUserRepository {
|
|
|
|
Future<List<User>> getByIds(List<String> ids);
|
2024-09-20 13:32:37 +00:00
|
|
|
Future<User?> get(String id);
|
2024-09-16 20:26:14 +00:00
|
|
|
}
|