Added archive system. Added ml debug menu and related stuff

This commit is contained in:
Marcel Baumgartner
2023-06-16 16:58:58 +02:00
parent 2ca41ff18f
commit 46a88d4638
25 changed files with 1868 additions and 14 deletions

View File

@@ -13,6 +13,8 @@ public class Server
public string OverrideStartup { get; set; } = "";
public bool Installing { get; set; } = false;
public bool Suspended { get; set; } = false;
public bool IsArchived { get; set; } = false;
public ServerBackup? Archive { get; set; } = null;
public List<ServerVariable> Variables { get; set; } = new();
public List<ServerBackup> Backups { get; set; } = new();