|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace Gremlin_BlazorServer.Data
|
|
{
|
|
public class BlazorAuthDb : IdentityDbContext
|
|
{
|
|
public BlazorAuthDb(DbContextOptions<BlazorAuthDb> options) : base(options)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |