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
|
||
|
}
|
||
|
}
|