mirror of
https://github.com/immich-app/immich.git
synced 2025-06-23 15:30:51 -04:00
11 lines
374 B
Dart
11 lines
374 B
Dart
import 'package:immich_mobile/domain/models/asset/asset.model.dart';
|
|
import 'package:photo_manager/photo_manager.dart';
|
|
|
|
abstract interface class IAlbumMediaRepository {
|
|
Future<List<AssetPathEntity>> getAll({PMFilter? filter});
|
|
|
|
Future<List<LocalAsset>> getAssetsForAlbum(AssetPathEntity album);
|
|
|
|
Future<AssetPathEntity> refresh(String albumId, {PMFilter? filter});
|
|
}
|