mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
6 lines
185 B
Dart
6 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);
|
|
}
|