1
0
mirror of https://github.com/immich-app/immich.git synced 2025-04-22 13:08:08 +02:00
immich/mobile/lib/interfaces/user.interface.dart

6 lines
153 B
Dart
Raw Normal View History

import 'package:immich_mobile/entities/user.entity.dart';
abstract interface class IUserRepository {
Future<List<User>> getByIds(List<String> ids);
}