コード例 #1
0
        public async Task <ActionResult> GetRecentlyPlayedGames()
        {
            _logger.LogInformation("Loading recently played games for steam controller.");

            var games = await _steamService.GetRecentlyPlayedGames();

            return(View(games));
        }