13 lines
326 B
C#
13 lines
326 B
C#
|
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)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|