mirror of
https://github.com/C9Glax/tranga.git
synced 2025-07-04 09:54:16 +02:00
10 lines
419 B
C#
10 lines
419 B
C#
using API.Schema.NotificationsContext.NotificationConnectors;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Schema.NotificationsContext;
|
|
|
|
public class NotificationsContext(DbContextOptions<NotificationsContext> options) : TrangaBaseContext<NotificationsContext>(options)
|
|
{
|
|
public DbSet<NotificationConnector> NotificationConnectors { get; set; }
|
|
public DbSet<Notification> Notifications { get; set; }
|
|
} |