Projektdateien hinzufügen.

This commit is contained in:
2020-06-03 22:44:52 +02:00
parent 8852a91eaf
commit a15eb0585a
60 changed files with 40483 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
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)
{
}
}
}