Database Update - ServerHardwareInfo

This commit is contained in:
2025-06-16 20:18:39 +02:00
parent 90dacceb62
commit 210952ea35
5 changed files with 385 additions and 0 deletions

View File

@@ -19,5 +19,13 @@ public class Server
public string? Description { get; set; }
// Hardware Infos
public string? CpuType { get; set; } = string.Empty;
public int CpuCores { get; set; }
public string? GpuType { get; set; } = string.Empty;
public double RamSize { get; set; }
}