Started implementing server installation

This commit is contained in:
2025-02-13 21:23:35 +01:00
parent f45699f300
commit 761ab455f0
11 changed files with 179 additions and 19 deletions

View File

@@ -0,0 +1,8 @@
namespace MoonlightServers.DaemonShared.PanelSide.Http.Responses;
public class ServerInstallDataResponse
{
public string Shell { get; set; }
public string DockerImage { get; set; }
public string Script { get; set; }
}