public IActionResult GetById(int id)
        {
            var res = _postCategoryService.GetPostCategoriesById(id);

            return(OkBaseResponse(res));
        }