mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 05:13:18 +08:00
15 lines
201 B
C#
15 lines
201 B
C#
using CPF.Mac.ObjCRuntime;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
[Since(4, 0)]
|
|
public enum NSOperationQueuePriority : long
|
|
{
|
|
VeryLow = -8L,
|
|
Low = -4L,
|
|
Normal = 0L,
|
|
High = 4L,
|
|
VeryHigh = 8L
|
|
}
|
|
}
|