Skip to content

Instantly share code, notes, and snippets.

@Ibro
Created April 24, 2018 18:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/81cfd7ed3a04464729878857fd483b11 to your computer and use it in GitHub Desktop.
Save Ibro/81cfd7ed3a04464729878857fd483b11 to your computer and use it in GitHub Desktop.
ASP.NET Core Authorization - Managing permissions for resources - Category class
public class Category
{
public string Id { get; set; }
public string Name { get; set; }
public ApplicationUser User { get; set; }
public string UserId { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment