9 lines
316 B
C#
9 lines
316 B
C#
using Microsoft.AspNetCore.Identity;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace RhSolutions.Models;
|
|
public class IdentityContext : IdentityDbContext<IdentityUser>
|
|
{
|
|
public IdentityContext(DbContextOptions<IdentityContext> options) : base(options) { }
|
|
} |