public Trello(string key) { _restClient = new TrelloRestClient(key); Members = new Members(_restClient); Boards = new Boards(_restClient); Lists = new Lists(_restClient); Cards = new Cards(_restClient); Checklists = new Checklists(_restClient); Organizations = new Organizations(_restClient); }
public Trello(string key) { _restClient = new TrelloRestClient(key); Members = new Members(_restClient); Boards = new Boards(_restClient); Lists = new Lists(_restClient); Cards = new Cards(_restClient); Checklists = new Checklists(_restClient); Organizations = new Organizations(_restClient); Notifications = new Notifications(_restClient); Tokens = new Tokens(_restClient); Async = new AsyncTrello(_restClient); }