CPF/CPF.Mac/Mac/Foundation/NSNotificationFlags.cs
2023-11-21 23:05:03 +08:00

12 lines
158 B
C#

using System;
namespace CPF.Mac.Foundation
{
[Flags]
public enum NSNotificationFlags : ulong
{
DeliverImmediately = 0x1,
PostToAllSessions = 0x2
}
}