mirror of
https://github.com/ryzij/ServerMonitor.git
synced 2026-07-14 03:46:58 +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