using API.Schema.NotificationConnectors; using Microsoft.EntityFrameworkCore; namespace API.Schema.Contexts; public class NotificationsContext(DbContextOptions options) : DbContext(options) { public DbSet NotificationConnectors { get; set; } public DbSet Notifications { get; set; } }