Guest User

Untitled

a guest
Jan 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. namespace AspNetCoreJwtAuth.Api.Context
  2. {
  3. public class ApplicationDbContext: IdentityDbContext
  4. {
  5. public DbSet<ApplicationUser> Users { get; set;}
  6.  
  7. public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
  8. :base(options)
  9. {
  10.  
  11. }
  12.  
  13. }
  14. }
Add Comment
Please, Sign In to add comment