2024-09-16 15:26:14 -05:00
|
|
|
import 'package:immich_mobile/entities/user.entity.dart';
|
|
|
|
|
|
|
|
abstract interface class IUserRepository {
|
|
|
|
Future<List<User>> getByIds(List<String> ids);
|
2024-09-20 08:32:37 -05:00
|
|
|
Future<User?> get(String id);
|
2024-09-16 15:26:14 -05:00
|
|
|
}
|