11 lines
384 B
C#
11 lines
384 B
C#
using MoonlightServers.Daemon.Models.Cache;
|
|
using MoonlightServers.DaemonShared.PanelSide.Http.Responses;
|
|
|
|
namespace MoonlightServers.Daemon.ServerSys.Abstractions;
|
|
|
|
public record ServerContext
|
|
{
|
|
public ServerConfiguration Configuration { get; set; }
|
|
public AsyncServiceScope ServiceScope { get; set; }
|
|
public ServerInstallDataResponse InstallConfiguration { get; set; }
|
|
} |