示例#1
0
        public TrelloRunner(TrelloConfiguration configuration)
        {
            _trello = new Trello(configuration.AppKey);
            _configuration = configuration;

            _configuration.UserName = (_configuration.UserName ?? "").Trim('@');

            _trello.Authorize(configuration.UserToken);
        }
示例#2
0
 public Configuration()
 {
     Mite = new MiteConfiguration();
     Trello = new TrelloConfiguration();
 }