Files
webdoorcreator/WebDoorCreator.Data/ApplicationDbContext.cs
T
2023-03-03 11:34:42 +01:00

13 lines
333 B
C#

using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace WebDoorCreator.Data
{
public class ApplicationDbContext : IdentityDbContext
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
}
}