using Microsoft.EntityFrameworkCore; namespace AipsCore.Infrastructure.Persistence.Db; public class AipsDbContext : DbContext { public DbSet Users { get; set; } public DbSet Whiteboards { get; set; } public DbSet Shapes { get; set; } public DbSet WhiteboardMemberships { get; set; } public AipsDbContext(DbContextOptions options) : base(options) { } }