コード例 #1
0
        public async Task <IActionResult> GetChapterDetailsByQuest(string questId)
        {
            List <AikaChapterDetail> details = await _chapterDetailDbAccess.GetChapterDetailsByQuestId(questId);

            return(Ok(details));
        }