using Elements.Data.Models; using Microsoft.EntityFrameworkCore; namespace Elements.Data; public class ApplicationDbContext : DbContext { public DbSet Elements { get; set; } public DbSet Users { get; set; } public ApplicationDbContext(DbContextOptions options) : base(options) { } }