mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
6 lines
207 B
Dart
6 lines
207 B
Dart
|
|
abstract interface class ILocalFilesManager {
|
||
|
|
Future<bool> moveToTrash(List<String> mediaUrls);
|
||
|
|
Future<bool> restoreFromTrash(String fileName, int type);
|
||
|
|
Future<bool> requestManageMediaPermission();
|
||
|
|
}
|