namespace Core.Common.Utils.Collections { /// /// Action for changes to a collection such as add, remove. /// public enum NotifyCollectionChangeAction { Add, Remove, Replace, Reset } }