public Client(string clientId, string clientSecret, Auth oAuth) { api = new APIWrapper(clientId, clientSecret); this.oAuth = oAuth; }
public static Auth FromJson(string json) { return(Auth.FromJson(JToken.Parse(json))); }