public IActionResult DeletePost(int categoryId)
        {
            var res = _postCategoryService.DeletePostCategories(categoryId);

            return(OkBaseResponse(res));
        }