16 lines
363 B
C#
16 lines
363 B
C#
using clivelancaster.Models;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace clivelancaster.Data
|
|
{
|
|
public class ApplicationDbContext : DbContext
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
|
|
: base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<SubscribeFormModel> subscriptions { get; set; }
|
|
}
|
|
}
|