Fixed some stuff like allocation, wings oom killer option

This commit is contained in:
Marcel Baumgartner
2023-04-14 11:59:22 +02:00
parent 08e4a9df22
commit 729e91c20c
6 changed files with 1061 additions and 5 deletions

View File

@@ -17,7 +17,7 @@ public class Server
public List<ServerVariable> Variables { get; set; } = new();
public List<ServerBackup> Backups { get; set; } = new();
public List<NodeAllocation> Allocations { get; set; } = new();
public NodeAllocation MainAllocation { get; set; } = null!;
public NodeAllocation? MainAllocation { get; set; } = null;
public Node Node { get; set; } = null!;
public User Owner { get; set; } = null!;
public bool IsCleanupException { get; set; } = false;