chore: rename user api interface (#17062)

Co-authored-by: shenlong-tanwen <139912620+shalong-tanwen@users.noreply.github.com>
This commit is contained in:
shenlong 2025-03-24 21:30:08 +05:30 committed by GitHub
parent a77608e36b
commit ad151130f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 6 additions and 6 deletions

View file

@ -1,15 +0,0 @@
import 'dart:typed_data';
import 'package:immich_mobile/domain/models/user.model.dart';
abstract interface class IUserApiRepository {
Future<UserDto?> getMyUser();
Future<List<UserDto>> getAll();
/// Saves the [data] in the server and uses it as the current users profile image
Future<String> createProfileImage({
required String name,
required Uint8List data,
});
}