using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace RhSolutions.Models; public class IdentityContext : IdentityDbContext { public IdentityContext(DbContextOptions options) : base(options) { } }