Files
OwinOAuthProviders/OwinOAuthProvidersDemo/Models/IdentityModels.cs
2013-11-13 10:43:51 +07:00

17 lines
518 B
C#

using Microsoft.AspNet.Identity.EntityFramework;
namespace OwinOAuthProvidersDemo.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")
{
}
}
}