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