コード例 #1
0
        public CheckListContext(string id, TrelloAuthorization auth)
            : base(auth)
        {
            Data.Id = id;

            CheckItems = new CheckItemCollection(this, auth);
        }
コード例 #2
0
        public CheckListContext(string id, TrelloAuthorization auth)
            : base(auth)
        {
            Data.Id = id;

            CheckItems            = new CheckItemCollection(this, auth);
            CheckItems.Refreshed += (s, e) => OnMerged(new[] { nameof(CheckItems) });
        }