mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 05:13:18 +08:00
12 lines
145 B
C#
12 lines
145 B
C#
using System;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
[Flags]
|
|
public enum NSEnumerationOptions : ulong
|
|
{
|
|
SortConcurrent = 0x1,
|
|
Reverse = 0x2
|
|
}
|
|
}
|