using Microsoft.EntityFrameworkCore; using Safeguard.Models; namespace Safeguard.EntityFramework { public class Context : DbContext { public Context(DbContextOptions options) : base(options) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } public DbSet HostMqttInfos { get; set; } public DbSet MCConfigs { get; set; } public DbSet CimPasswords { get; set; } } }