public CheckListContext(string id, TrelloAuthorization auth) : base(auth) { Data.Id = id; CheckItems = new CheckItemCollection(this, auth); }
public CheckListContext(string id, TrelloAuthorization auth) : base(auth) { Data.Id = id; CheckItems = new CheckItemCollection(this, auth); CheckItems.Refreshed += (s, e) => OnMerged(new[] { nameof(CheckItems) }); }