Cleaned up interfaces. Extracted server state machine trigger handler to seperated classes. Removed legacy code
This commit is contained in:
11
MoonlightServers.Daemon/ServerSystem/Models/ServerContext.cs
Normal file
11
MoonlightServers.Daemon/ServerSystem/Models/ServerContext.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using MoonlightServers.Daemon.Models.Cache;
|
||||
|
||||
namespace MoonlightServers.Daemon.ServerSystem.Models;
|
||||
|
||||
public class ServerContext
|
||||
{
|
||||
public ServerConfiguration Configuration { get; set; }
|
||||
public int Identifier { get; set; }
|
||||
public AsyncServiceScope ServiceScope { get; set; }
|
||||
public Server Server { get; set; }
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
namespace MoonlightServers.Daemon.ServerSystem.Models;
|
||||
|
||||
public class StatisticsData
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user