mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
3868736799
* refactor(mobile): album api repository for album service
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);
|
|
}
|