CPF/CPF.Mac/Mac/Foundation/NSUrlBookmarkResolutionOptions.cs

13 lines
191 B
C#
Raw Normal View History

2023-11-21 23:05:03 +08:00
using System;
namespace CPF.Mac.Foundation
{
[Flags]
public enum NSUrlBookmarkResolutionOptions : ulong
{
WithoutUI = 0x100,
WithoutMounting = 0x200,
WithSecurityScope = 0x400
}
}