Ejemplo n.º 1
0
        public static AuthResponse SuccessAuthResponseWithLink(string linkText, string linkValue)
        {
            var response = new AuthResponse();

            response.Success = true;
            response.SetLink(linkText, linkValue);
            return(response);
        }