using System; namespace Infrastructure.Web.Mvc { [AttributeUsage(AttributeTargets.Class)] public class ControllerScopeAttribute : Attribute { /// /// 默认为All /// public ControllerScopeAttribute() { this.Scope = ControllerScopeType.All; } public ControllerScopeAttribute(ControllerScopeType scope) { this.Scope = scope; } public ControllerScopeType Scope { get; } } }