using HopFrame.Testing.Models; using Microsoft.EntityFrameworkCore; namespace HopFrame.Testing; public class DatabaseContext(DbContextOptions options) : DbContext(options) { public DbSet Users { get; set; } }