mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04: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);
|
|
}
|