[CHANGE] Preparing database

This commit is contained in:
max
2025-08-11 00:44:52 +02:00
parent 9edd0690cf
commit 3c3f2db4e7
6 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.EntityFrameworkCore;
namespace Manager.Data.Contexts;
public class LibraryDbContext : DbContext
{
public LibraryDbContext(DbContextOptions<LibraryDbContext> options) : base(options)
{
}
}