mirror of
https://github.com/immich-app/immich.git
synced 2025-06-03 19:19:23 +02:00
fix: auto trash using MANAGE_MEDIA Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
5 lines
207 B
Dart
5 lines
207 B
Dart
abstract interface class ILocalFilesManager {
|
|
Future<bool> moveToTrash(List<String> mediaUrls);
|
|
Future<bool> restoreFromTrash(String fileName, int type);
|
|
Future<bool> requestManageMediaPermission();
|
|
}
|