14 lines
366 B
C#
14 lines
366 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using ReverseLlama.Server.Models;
|
|
|
|
namespace ReverseLlama.Server.Data;
|
|
|
|
internal sealed class ApplicationDbContext : IdentityDbContext<ApplicationUser>
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
}
|