Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 23, 2019 09:53
Show Gist options
  • Select an option

  • Save ntakouris/63af894a02026532c797fbec70370030 to your computer and use it in GitHub Desktop.

Select an option

Save ntakouris/63af894a02026532c797fbec70370030 to your computer and use it in GitHub Desktop.
public class WorksForCompanyRequirement : IAuthorizationRequirement
{
public string DomainName { get; }
public WorksForCompanyRequirement(string domainName)
{
DomainName = domainName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment