Guest User

Untitled

a guest
Feb 17th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. public class AccessPage
  2. {
  3. [Key]
  4. public int Id { get; set; }
  5. public string RequestUri { get; set; }
  6. public bool IsActive { get; set; }
  7. [ForeignKey("UserRole")]
  8. public int UserRoleId { get; set; }
  9. public virtual UserRole UserRole { get; set; }
  10. }
  11.  
  12. public class UserRole : IdentityUserRole<int>
  13. {
  14.  
  15. }
Add Comment
Please, Sign In to add comment