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

            return(Ok(result));
        }