feat(WFDBContext): Verwandte DbSets hinzufügen

This commit is contained in:
Developer 02 2024-10-23 01:10:34 +02:00
parent 7db29e9cfd
commit 547b8f0a01

View File

@ -5,5 +5,14 @@ namespace WorkFlow.Infrastructure
{
public class WFDBContext(DbContextOptions options) : DbContext(options)
{
public DbSet<Config> Configs { get; set; }
public DbSet<ProfControlsTf> ProfControlsTf { get; set; }
public DbSet<Profile> Profiles { get; set; }
public DbSet<ProfileObjState> ProfileObjStates { get; set; }
public DbSet<WfState> WfStates { get; set; }
}
}