Upload App
This commit is contained in:
12
PaydayFrontend/Data/ApplicationDbContext.cs
Normal file
12
PaydayFrontend/Data/ApplicationDbContext.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace PaydayFrontend.Data;
|
||||
|
||||
public class ApplicationDbContext : IdentityDbContext
|
||||
{
|
||||
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
||||
: base(options)
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user