11 lines
325 B
C#
11 lines
325 B
C#
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; }
|
|
} |