Files
immich/mobile-v2/lib/domain/interfaces/api/sync_api.interface.dart
shenlong-tanwen 3b8951fde6 more refactors
2025-02-26 08:58:19 +05:30

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,
});
}