immich/mobile/lib/interfaces/partner.interface.dart
Alex 579321251f
refactor(mobile): partners provider (#16299)
* refactor(mobile): partners provider

* update analysis option

* update analysis option
2025-02-25 08:52:33 -06:00

9 lines
249 B
Dart

import 'package:immich_mobile/entities/user.entity.dart';
abstract class IPartnerRepository {
Future<List<User>> getSharedWith();
Future<List<User>> getSharedBy();
Stream<List<User>> watchSharedWith();
Stream<List<User>> watchSharedBy();
}