Infrastructure: Add DB Context

This commit is contained in:
Jonas Seiler 2025-04-02 09:31:50 +02:00
parent 8118f3e24e
commit 48afaeec3f

View File

@ -0,0 +1,9 @@
using Microsoft.EntityFrameworkCore;
public class StreetDbContext : DbContext
{
public StreetDbContext(DbContextOptions<StreetDbContext> options) : base(options)
{
}
}