mirror of
https://github.com/immich-app/immich
synced 2025-06-09 00:27:58 +00:00
7 lines
185 B
Dart
7 lines
185 B
Dart
import 'package:immich_mobile/entities/user.entity.dart';
|
|
|
|
abstract interface class IUserRepository {
|
|
Future<List<User>> getByIds(List<String> ids);
|
|
Future<User?> get(String id);
|
|
}
|