mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 01:12:58 -04:00
fix: auto trash using MANAGE_MEDIA Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
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();
|
|
}
|