Skip to content

Instantly share code, notes, and snippets.

@johnmmoss
Created November 12, 2016 21:01
Show Gist options
  • Save johnmmoss/6f7c8b8308a384cf245249e0507ec08f to your computer and use it in GitHub Desktop.
Save johnmmoss/6f7c8b8308a384cf245249e0507ec08f to your computer and use it in GitHub Desktop.
User and Role Entities
public class User : IdentityUser
{
}
public class Role : IdentityRole
{
public Role() : base() { }
public Role(string name) : base(name) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment