public static AuthResponse SuccessAuthResponseWithLink(string linkText, string linkValue) { var response = new AuthResponse(); response.Success = true; response.SetLink(linkText, linkValue); return(response); }