mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
6 lines
180 B
Dart
6 lines
180 B
Dart
|
|
import 'package:immich_mobile/entities/backup_album.entity.dart';
|
||
|
|
|
||
|
|
abstract interface class IBackupRepository {
|
||
|
|
Future<List<String>> getIdsBySelection(BackupSelection backup);
|
||
|
|
}
|