コード例 #1
0
        public IActionResult GetTagsByPostId(int id)
        {
            var postTags = _postTagRepository.GetTagByPostId(id);

            return(Ok(postTags));
        }