Files
hcs/Hcs.WebApp/Data/AppIdentityDbContext.cs

8 lines
258 B
C#

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