using Microsoft.EntityFrameworkCore; using Kehyeedra3.Services.Models; namespace Kehyeedra3 { class ApplicationDbContext : DbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } public DbSet Users { get; set; } public DbSet Reminders { get; set; } public DbSet Fishing { get; set; } public DbSet StoreFronts { get; set; } } }