mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
13 lines
191 B
C#
13 lines
191 B
C#
using System;
|
|
|
|
namespace CPF.Mac.Foundation
|
|
{
|
|
[Flags]
|
|
public enum NSUrlBookmarkResolutionOptions : ulong
|
|
{
|
|
WithoutUI = 0x100,
|
|
WithoutMounting = 0x200,
|
|
WithSecurityScope = 0x400
|
|
}
|
|
}
|