Skip to content

Instantly share code, notes, and snippets.

@wellingtonjhn
Last active May 29, 2018 18:57
Show Gist options
  • Save wellingtonjhn/a0c820a1a2242c82d66034058b04f03e to your computer and use it in GitHub Desktop.
Save wellingtonjhn/a0c820a1a2242c82d66034058b04f03e to your computer and use it in GitHub Desktop.
Policy Requirement
public class DeleteUserRequirement : IAuthorizationRequirement
{
public string RequiredPermission { get; }
public DeleteUserRequirement(string requiredPermission)
{
RequiredPermission = requiredPermission;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment