refactor(mobile): partners provider (#16299)

* refactor(mobile): partners provider

* update analysis option

* update analysis option
This commit is contained in:
Alex 2025-02-25 08:52:33 -06:00 committed by GitHub
parent 392f9f205c
commit 579321251f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 90 additions and 17 deletions

View file

@ -0,0 +1,8 @@
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();
}