public async Task <IActionResult> AddPostReportAsync([FromBody] List <ReportView> models, string postId, int userId)
        {
            var result = await _service.AddPostReportAsync(models, postId, userId);

            return(Ok(result));
        }