Files
studenthousedashboard/StudentHouseDashboard/WebApplication1/Data/ApplicationDbContext.cs
2023-03-05 21:56:11 +01:00

13 lines
334 B
C#

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