mirror of
https://github.com/C9Glax/tranga.git
synced 2025-06-18 09:17:52 +02:00
Attach Entities to Jobs
This commit is contained in:
10
API/Schema/Contexts/NotificationsContext.cs
Normal file
10
API/Schema/Contexts/NotificationsContext.cs
Normal file
@ -0,0 +1,10 @@
|
||||
using API.Schema.NotificationConnectors;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
|
||||
namespace API.Schema.Contexts;
|
||||
|
||||
public class NotificationsContext(DbContextOptions<NotificationsContext> options) : DbContext(options)
|
||||
{
|
||||
public DbSet<NotificationConnector> NotificationConnectors { get; set; }
|
||||
public DbSet<Notification> Notifications { get; set; }
|
||||
}
|
Reference in New Issue
Block a user