Files
Servers/MoonlightServers.Daemon/ServerSys/Abstractions/ServerMeta.cs

10 lines
311 B
C#

using MoonlightServers.Daemon.Models.Cache;
namespace MoonlightServers.Daemon.ServerSys.Abstractions;
public record ServerMeta
{
public ServerConfiguration Configuration { get; set; }
public IServiceCollection ServiceCollection { get; set; }
public IServiceProvider ServiceProvider { get; set; }
}