14 lines
371 B
C#
14 lines
371 B
C#
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace RobotNet.IdentityServer.Data
|
|
{
|
|
public class ApplicationDbContext : IdentityDbContext<ApplicationUser, ApplicationRole, string>
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
}
|
|
}
|