feat(notification-outbox): add Notification EF configuration and DbSet

This commit is contained in:
Joseph Doherty
2026-05-19 00:55:58 -04:00
parent 87ac9b8a4d
commit 761595309b
3 changed files with 123 additions and 0 deletions

View File

@@ -69,6 +69,7 @@ public class ScadaLinkDbContext : DbContext, IDataProtectionKeyContext
public DbSet<NotificationList> NotificationLists => Set<NotificationList>();
public DbSet<NotificationRecipient> NotificationRecipients => Set<NotificationRecipient>();
public DbSet<SmtpConfiguration> SmtpConfigurations => Set<SmtpConfiguration>();
public DbSet<Notification> Notifications => Set<Notification>();
// Scripts
public DbSet<SharedScript> SharedScripts => Set<SharedScript>();