コード例 #1
0
        public IActionResult GetPlayerAnswers(string gameId, string playerId)
        {
            var answers = playersService.GetPlayerAnswers(gameId, playerId);

            return(Ok(answers));
        }