예제 #1
0
        public async Task <IActionResult> GetListPostCategory([FromQuery] ListPostCategoryRequestModel model)
        {
            var data = await _postCategoryService.GetListPostCategoryAsync <ListPostCategoryModel>(model);

            return(Success(data));
        }