Upload App

This commit is contained in:
2023-07-29 16:29:05 +03:00
parent e7bbb24277
commit 584a409b12
95 changed files with 76036 additions and 0 deletions

View 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)
{
}
}