/// <summary> /// Check if a board has category lists (part of isFeedbackBoard check) /// </summary> /// <param name="board"></param> /// <returns></returns> private bool boardHasCategoryLists(Board board) { List[] lists = trello.GetLists(board.id); for (int i = 0; i < lists.Length; i++) { if (lists[i].name.EndsWith(Trello.CATEGORY_TAG)) { return(true); } } return(false); }