public async Task <IActionResult> ReportPostCommentAsync([FromBody] List <ReportView> models, string postId, string commentId, int userId)
        {
            if (models == null)
            {
                return(BadRequest());
            }

            var result = await _service.ReportPostCommentAsync(models, postId, commentId, userId);

            return(Ok(result));
        }