using Abp.Authorization;
using Abp.Collections;
namespace Abp.Configuration.Startup
{
///
/// Used to configure authorization system.
///
public interface IAuthorizationConfiguration
{
///
/// List of authorization providers.
///
ITypeList Providers { get; }
///
/// Enables/Disables attribute based authentication and authorization.
/// Default: true.
///
bool IsEnabled { get; set; }
}
}