diff options
| author | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-25 22:49:00 +0200 |
|---|---|---|
| committer | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-02-25 22:49:00 +0200 |
| commit | 42f4506395d6b9e7593253856a21b2b536e18df5 (patch) | |
| tree | a6aaba71407593348878e170dbff5c52a311320c /src/Services/DevHive.Services/Interfaces | |
| parent | a851adfac47a26cae83e9161d37902a219e5ebf3 (diff) | |
| download | DevHive-42f4506395d6b9e7593253856a21b2b536e18df5.tar DevHive-42f4506395d6b9e7593253856a21b2b536e18df5.tar.gz DevHive-42f4506395d6b9e7593253856a21b2b536e18df5.zip | |
Adding RatePost functionality
Diffstat (limited to 'src/Services/DevHive.Services/Interfaces')
| -rw-r--r-- | src/Services/DevHive.Services/Interfaces/IRatingService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Services/DevHive.Services/Interfaces/IRatingService.cs b/src/Services/DevHive.Services/Interfaces/IRatingService.cs index adb4313..5dea04f 100644 --- a/src/Services/DevHive.Services/Interfaces/IRatingService.cs +++ b/src/Services/DevHive.Services/Interfaces/IRatingService.cs @@ -7,7 +7,7 @@ namespace DevHive.Services.Interfaces { public interface IRatingService { - Task<ReadRatingServiceModel> RatePost(CreateRatingServiceModel ratePostServiceModel); + Task<Guid> RatePost(CreateRatingServiceModel ratePostServiceModel); bool HasUserRatedThisPost(User user, Post post); } |
