namespace DelftTools.Utils.Collections { public interface INotifyCollectionChange : INotifyCollectionChanging, INotifyCollectionChanged { /// /// Makes sure that property is checked/reset in added/removed child objects. /// See also . /// TODO: this property must be moved to IEntity. Also it seems to be redundant. /// bool HasParentIsCheckedInItems { get; set; } // TODO: move to IEventedList! Not relevant for all INotifyCollectionChange bool SkipChildItemEventBubbling { get; set; } } }