Horizon – Blame information for rev 7
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
7 | office | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace Configuration |
||
8 | { |
||
9 | |||
10 | /// <summary> |
||
11 | /// The change operation. |
||
12 | /// </summary> |
||
13 | [Flags] |
||
14 | public enum NotifyEvent : int |
||
15 | { |
||
16 | Create = 0x1, |
||
17 | Update = 0x2, |
||
18 | Transfer = 0x4, |
||
19 | Revert = 0x8 |
||
20 | } |
||
21 | } |