public async Task <ActionResult <ApiResult> > Get()
        {
            var    result = new ApiResult();
            TpInfo tpInfo = new TpInfo()
            {
                GameType = "Ag"
            };
            var data = await _thirdPartyService.GotoGameAsync(tpInfo);

            result.Data = data;
            return(Ok(result));
        }