using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Configuration { /// /// The change operation. /// [Flags] public enum NotifyEvent : int { Create = 0x1, Update = 0x2, Transfer = 0x4, Revert = 0x8 } }