refactor(mobile): partner.interface.dart ()

This commit is contained in:
Alex 2025-06-20 13:37:59 -05:00 committed by GitHub
commit c707f9cef4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 5 additions and 21 deletions
mobile/lib/interfaces

View file

@ -1,8 +0,0 @@
import 'package:immich_mobile/domain/models/user.model.dart';
abstract class IPartnerRepository {
Future<List<UserDto>> getSharedWith();
Future<List<UserDto>> getSharedBy();
Stream<List<UserDto>> watchSharedWith();
Stream<List<UserDto>> watchSharedBy();
}