public async Task <IActionResult> Downvote([FromBody] int id)
 {
     _responseService.DownvoteResponse(id);
     return(Ok());
 }