You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
481 B
16 lines
481 B
using Microsoft.EntityFrameworkCore;
|
|
using Kehyeedra3.Services.Models;
|
|
|
|
namespace Kehyeedra3
|
|
{
|
|
class ApplicationDbContext : DbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
|
|
{ }
|
|
|
|
public DbSet<User> Users { get; set; }
|
|
public DbSet<Reminder> Reminders { get; set; }
|
|
public DbSet<Fishing> Fishing { get; set; }
|
|
public DbSet<StoreFront> StoreFronts { get; set; }
|
|
}
|
|
}
|
|
|