using Microsoft.EntityFrameworkCore; using TwilioSMSReceiver.Data.Models; namespace TwilioSMSReceiver.Data { public class SMSDbCtx : DbContext { public SMSDbCtx(DbContextOptions options) : base(options) { } public DbSet SMSMessages { get; set; } public DbSet MMSMessages { get; set; } public DbSet MSTeamsWebHooks { get; set; } } }