using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Project_Unite { /// /// Tells the Unite request router that this view/action requires administrative permissions. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class RequiresAdmin : Attribute { } /// /// Tells the Unite request router that this view/action requires developer permissions. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class RequiresDeveloper : Attribute { } /// /// Tells the Unite request router that this view/action requires moderator permissions. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] public class RequiresModerator : Attribute { } }