mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
6995cc2b38
* refactor(mobile): encapsulate most access to photomanager in repository
7 lines
197 B
Dart
7 lines
197 B
Dart
import 'package:immich_mobile/entities/asset.entity.dart';
|
|
|
|
abstract interface class IAssetMediaRepository {
|
|
Future<List<String>> deleteAll(List<String> ids);
|
|
|
|
Future<Asset?> get(String id);
|
|
}
|