CPF/CPF.Mac/Mac/Foundation/NSNotificationFlags.cs

12 lines
158 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.Foundation
{
[Flags]
public enum NSNotificationFlags : ulong
{
DeliverImmediately = 0x1,
PostToAllSessions = 0x2
}
}