mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05: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);
|
||
|
}
|