This commit is contained in:
2025-07-30 12:06:32 +02:00
parent f24e02c8b4
commit 8435fbfdae
4 changed files with 167 additions and 56 deletions

View File

@@ -25,7 +25,7 @@ public class Server
public int CpuCores { get; set; } = 0;
public string? GpuType { get; set; } = string.Empty;
public double RamSize { get; set; } = 0;
public string? DiskSpace { get; set; } = string.Empty;
// Database
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
@@ -35,5 +35,5 @@ public class Server
public DateTime LastSeen { get; set; }
public Boolean IsVerified { get; set; } = false;
}