Add identity first iteration
This commit is contained in:
7
Hcs.WebApp/Data/AppIdentityDbContext.cs
Normal file
7
Hcs.WebApp/Data/AppIdentityDbContext.cs
Normal file
@ -0,0 +1,7 @@
|
||||
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace Hcs.WebApp.Data
|
||||
{
|
||||
internal class AppIdentityDbContext(DbContextOptions<AppIdentityDbContext> options) : IdentityDbContext<AppUser>(options) { }
|
||||
}
|
||||
Reference in New Issue
Block a user