CPF/CPF.Mac/Mac/Foundation/NSNotificationCoalescing.cs

13 lines
184 B
C#
Raw Normal View History

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