示例#1
0
        public static AuthResponse SuccessAuthResponseWithToken(string token)
        {
            var response = new AuthResponse();

            response.Success = true;
            response.SetToken(token);
            return(response);
        }