mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
7 lines
208 B
Dart
7 lines
208 B
Dart
|
|
import 'package:immich_mobile/entities/asset.entity.dart';
|
||
|
|
|
||
|
|
abstract interface class IFolderApiRepository {
|
||
|
|
Future<List<String>> getAllUniquePaths();
|
||
|
|
Future<List<Asset>> getAssetsForPath(String? path);
|
||
|
|
}
|