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