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