1
0
mirror of https://github.com/immich-app/immich.git synced 2025-04-23 13:09:00 +02:00
immich/mobile/lib/interfaces/partner.interface.dart

9 lines
249 B
Dart
Raw Normal View History

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();
}