using System;
using System.Collections.Generic;
using System.Text;
namespace ScrewTurn.Wiki {
///
/// Lists legal values for authorizations.
///
public enum AuthStatus {
///
/// Grant the action.
///
Grant,
///
/// Deny the action.
///
Deny,
///
/// Delete the permission entry.
///
Delete
}
}