Files
Multiplechoicetrainer/MultipleChoiceTrainer/Data/ApplicationDbContext.cs
2020-06-03 22:44:52 +02:00

17 lines
408 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace MultipleChoiceTrainer.Data
{
public class ApplicationDbContext : IdentityDbContext
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
}
}