mirror of
https://github.com/ryzij/ServerMonitor.git
synced 2026-09-18 19:23:22 +00:00
Add MonitorPanel.DataAccess
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using MonitorPanel.DataAccess.Entities;
|
||||
namespace MonitorPanel.DataAccess;
|
||||
|
||||
public class MonitorPanelDbContext(DbContextOptions<MonitorPanelDbContext> options) : DbContext(options)
|
||||
{
|
||||
public DbSet<ServerEntity> Servers => Set<ServerEntity>();
|
||||
}
|
||||
Reference in New Issue
Block a user