mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
15 lines
184 B
C#
15 lines
184 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum NSKeyValueObservingOptions : ulong
|
||
|
{
|
||
|
New = 0x1,
|
||
|
Old = 0x2,
|
||
|
OldNew = 0x3,
|
||
|
Initial = 0x4,
|
||
|
Prior = 0x8
|
||
|
}
|
||
|
}
|