screwturn-4/Core/AuthStatus.cs
2009-09-30 13:47:13 +00:00

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