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