Initial solution creation

This commit is contained in:
2026-04-08 14:23:49 +09:30
parent 4179d84161
commit 3fe90355e0
87 changed files with 83825 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace FJPSite.Data
{
public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : IdentityDbContext(options)
{
}
}