mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-18 13:26:45 +08:00
13 lines
184 B
C#
13 lines
184 B
C#
![]() |
using System;
|
||
|
|
||
|
namespace CPF.Mac.Foundation
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum NSNotificationCoalescing : ulong
|
||
|
{
|
||
|
NoCoalescing = 0x0,
|
||
|
CoalescingOnName = 0x1,
|
||
|
CoalescingOnSender = 0x2
|
||
|
}
|
||
|
}
|