mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 00:50:23 -05: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);
|
||
|
}
|