From 547b8f0a013330feafa3ba8b4229bd89b6e91a41 Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Wed, 23 Oct 2024 01:10:34 +0200 Subject: [PATCH] =?UTF-8?q?feat(WFDBContext):=20Verwandte=20DbSets=20hinzu?= =?UTF-8?q?f=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- WorkFlow.Infrastructure/WFDBContext.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/WorkFlow.Infrastructure/WFDBContext.cs b/WorkFlow.Infrastructure/WFDBContext.cs index 5376fca..a9288cf 100644 --- a/WorkFlow.Infrastructure/WFDBContext.cs +++ b/WorkFlow.Infrastructure/WFDBContext.cs @@ -5,5 +5,14 @@ namespace WorkFlow.Infrastructure { public class WFDBContext(DbContextOptions options) : DbContext(options) { + public DbSet Configs { get; set; } + + public DbSet ProfControlsTf { get; set; } + + public DbSet Profiles { get; set; } + + public DbSet ProfileObjStates { get; set; } + + public DbSet WfStates { get; set; } } } \ No newline at end of file