diff --git a/src/ReC.Infrastructure/RecDbContext.cs b/src/ReC.Infrastructure/RecDbContext.cs index ff573ad..375a7f5 100644 --- a/src/ReC.Infrastructure/RecDbContext.cs +++ b/src/ReC.Infrastructure/RecDbContext.cs @@ -16,6 +16,16 @@ public class RecDbContext(DbContextOptions options) : DbContext(op public DbSet BodyQueryResults { get; set; } + public DbSet Connections { get; set; } + + public DbSet Endpoints { get; set; } + + public DbSet EndpointAuths { get; set; } + + public DbSet Profiles { get; set; } + + public DbSet RecActions { get; set; } + protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); @@ -26,4 +36,4 @@ public class RecDbContext(DbContextOptions options) : DbContext(op modelBuilder.Entity().HasNoKey(); } -} +} \ No newline at end of file