Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created March 2, 2026 18:55
Show Gist options
  • Select an option

  • Save wullemsb/53a8cf7e513d403535bbe12fb401416e to your computer and use it in GitHub Desktop.

Select an option

Save wullemsb/53a8cf7e513d403535bbe12fb401416e to your computer and use it in GitHub Desktop.
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method, AllowMultiple = false)]
public class OurOwnAuthorizeAttribute : AuthorizeAttribute
{
public OurOwnAuthorizeAttribute()
{
}
public OurOwnAuthorizeAttribute(params string[] requiredRights)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment