mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
6 lines
153 B
Dart
6 lines
153 B
Dart
|
import 'package:immich_mobile/entities/user.entity.dart';
|
||
|
|
||
|
abstract interface class IUserRepository {
|
||
|
Future<List<User>> getByIds(List<String> ids);
|
||
|
}
|