26 lines
440 B
C#
26 lines
440 B
C#
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ScrewTurn.Wiki {
|
|
|
|
/// <summary>
|
|
/// Lists legal values for authorizations.
|
|
/// </summary>
|
|
public enum AuthStatus {
|
|
/// <summary>
|
|
/// Grant the action.
|
|
/// </summary>
|
|
Grant,
|
|
/// <summary>
|
|
/// Deny the action.
|
|
/// </summary>
|
|
Deny,
|
|
/// <summary>
|
|
/// Delete the permission entry.
|
|
/// </summary>
|
|
Delete
|
|
}
|
|
|
|
}
|