public async Task <IActionResult> RefreshAsync([FromServices] IAuthAppService authAppService, [FromForm] LoginRefresh loginRefresh)
        {
            var token = await authAppService.RefreshAsync(loginRefresh.Key, loginRefresh.UId,
                                                          Request.HttpContext.Connection.RemoteIpAddress.AddressFamily.ToString());

            return(Ok(token));
        }