mirror of
https://github.com/immich-app/immich.git
synced 2026-02-11 11:27:56 +03:00
12 lines
316 B
Dart
12 lines
316 B
Dart
import 'package:immich_mobile/domain/models/asset.model.dart';
|
|
|
|
abstract interface class ISyncApiRepository {
|
|
/// Fetches the full assets for the user in batches
|
|
Future<List<Asset>?> getFullSyncForUser({
|
|
String? lastId,
|
|
required int limit,
|
|
required DateTime updatedUntil,
|
|
String? userId,
|
|
});
|
|
}
|