mirror of
https://github.com/C9Glax/tranga.git
synced 2025-05-22 14:13:01 +02:00
10 lines
356 B
C#
10 lines
356 B
C#
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; }
|
|
} |