blob: 888bc7a38d1f8c6212ca88962b02edeaa747b6b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace MyDarling.Models;
public class IdentityContext : IdentityDbContext<IdentityUser>
{
public IdentityContext(DbContextOptions<IdentityContext> options) : base(options)
{
}
}
|