mirror of
https://github.com/immich-app/immich.git
synced 2025-07-09 09:12:57 +02:00
8 lines
249 B
Dart
8 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();
|
|
}
|