public async Task <ActionResult <GameState[]> > LoadGames(int id) { GameState[] games = await _workspaceService.GetGames(id); return(Ok(games)); }