mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +08:00
16 lines
229 B
C#
16 lines
229 B
C#
using System;
|
|
|
|
namespace CPF.Mac.Security
|
|
{
|
|
[Flags]
|
|
public enum AuthorizationFlags
|
|
{
|
|
Defaults = 0x0,
|
|
InteractionAllowed = 0x1,
|
|
ExtendRights = 0x2,
|
|
PartialRights = 0x4,
|
|
DestroyRights = 0x8,
|
|
PreAuthorize = 0x10
|
|
}
|
|
}
|