using bitforum.Models.User; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; public class UserContext : IdentityDbContext { public UserContext(DbContextOptions options): base(options) { } }