edit key word api added

This commit is contained in:
amirrezaghabeli
2026-04-25 12:13:49 +03:30
parent eb75952b8e
commit 00a3180499
13 changed files with 542 additions and 69 deletions
@@ -16,4 +16,10 @@ class ProfileRepository {
Future<Result<CompanyProfileResponse>> getCompanyProfile() {
return _profileService.getCompanyProfile();
}
Future<Result<ProfileResponse>> updateProfileKeyWords({
required List<String> keyWords,
}) {
return _profileService.updateProfileKeyWords(keyWords: keyWords);
}
}