public async Task <IActionResult> DeletePostShareAsync(string postId, int userId)
        {
            var result = await _service.DeletePostShareAsync(postId, userId);

            return(Ok(result));
        }