refactor(mobile): backup provider ()

* refactor(mobile): backup provider

* refactor(mobile): backup provider
This commit is contained in:
Alex 2025-02-27 09:56:23 -06:00 committed by GitHub
parent 082471dfd9
commit c70c9067b0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 109 additions and 81 deletions
mobile/lib/interfaces

View file

@ -1,7 +1,7 @@
import 'package:immich_mobile/entities/backup_album.entity.dart';
import 'package:immich_mobile/interfaces/database.interface.dart';
abstract interface class IBackupRepository implements IDatabaseRepository {
abstract interface class IBackupAlbumRepository implements IDatabaseRepository {
Future<List<BackupAlbum>> getAll({BackupAlbumSort? sort});
Future<List<String>> getIdsBySelection(BackupSelection backup);