mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
9 lines
249 B
Dart
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();
|
||
|
|
}
|