initial add
This commit is contained in:
17
Fab2ApprovalSystem/Models/IdentityModels.cs
Normal file
17
Fab2ApprovalSystem/Models/IdentityModels.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using Microsoft.AspNet.Identity.EntityFramework;
|
||||
|
||||
namespace Fab2ApprovalSystem.Models
|
||||
{
|
||||
// You can add profile data for the user by adding more properties to your ApplicationUser class, please visit http://go.microsoft.com/fwlink/?LinkID=317594 to learn more.
|
||||
public class ApplicationUser : IdentityUser
|
||||
{
|
||||
}
|
||||
|
||||
public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
|
||||
{
|
||||
public ApplicationDbContext()
|
||||
: base("DefaultConnection")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user