Created
November 12, 2016 21:01
-
-
Save johnmmoss/6f7c8b8308a384cf245249e0507ec08f to your computer and use it in GitHub Desktop.
User and Role Entities
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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