namespace Abp.Authorization
{
///
/// Defines standard interface for authorization attributes.
///
public interface IAbpAuthorizeAttribute
{
///
/// A list of permissions to authorize.
///
string[] Permissions { get; }
///
/// If this property is set to true, all of the must be granted.
/// If it's false, at least one of the must be granted.
/// Default: false.
///
bool RequireAllPermissions { get; set; }
}
}