mirror of
https://github.com/immich-app/immich.git
synced 2025-03-11 02:23:09 -05: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();
|
|
}
|