namespace Core.Common.Utils.Collections { /// /// Action for changes to a collection such as add, remove. /// public enum NotifyCollectionChangeAction { Add, Remove, Replace, Reset // HACK, TODO: remove this, used only in filtered Functions, move to a separate event in filtered function } }