using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; namespace Hcs.WebApp.Data { internal class AppIdentityDbContext(DbContextOptions options) : IdentityDbContext(options) { } }