using Blahblah.FlowerStory.Server.Data.Model; using Microsoft.EntityFrameworkCore; namespace Blahblah.FlowerStory.Server.Data; public class FlowerDatabase : DbContext { public FlowerDatabase(DbContextOptions options) : base(options) { } public DbSet Users { get; set; } public DbSet Flowers { get; set; } public DbSet Records { get; set; } }