infrastructure restructure

This commit is contained in:
2026-02-05 19:33:52 +01:00
parent 82d44c230f
commit 50e87335f4
5 changed files with 16 additions and 19 deletions

View File

@@ -0,0 +1,8 @@
using Microsoft.EntityFrameworkCore;
namespace AipsCore.Infrastructure.Persistence.Db;
public class AipsDbContext : DbContext
{
public DbSet<User.User> Users { get; set; }
}