using InventoryService.Api.Models; using JetBrains.Annotations; using Microsoft.EntityFrameworkCore; namespace InventoryService.Api.Database { public class InventoryContext : DbContext { public InventoryContext(DbContextOptions options) : base(options) { } public DbSet Inventory { get; set; } public DbSet SecretUsers { get; set; } } }