Esempio n. 1
0
        public async Task Test()
        {
            var trelloClient = new TrelloClient();

            var me = await trelloClient.CurrentUserProfileAsync();

            Console.WriteLine(me);
        }
Esempio n. 2
0
        public async Task Checklists()
        {
            var trelloClient = new TrelloClient();

            foreach (var board in (await trelloClient.CurrentUserProfileAsync()).Boards)
            {
                var boards = await trelloClient.ChecklistsByBoardId(board.Id);

                ;
            }
        }