Database Update + Local Storage Start
Some checks failed
Gitea CI/CD / dotnet-build-and-test (push) Has been cancelled
Gitea CI/CD / Set Tag Name (push) Has been cancelled
Gitea CI/CD / docker-build-and-push (push) Has been cancelled
Gitea CI/CD / Create Tag (push) Has been cancelled

This commit is contained in:
2025-12-06 12:47:28 +01:00
parent e72bc48cc4
commit 24538d8030
7 changed files with 134 additions and 16 deletions

View File

@@ -0,0 +1,18 @@
namespace watcher_monitoring.Models
{
public class ServerHardware
{
// CPU
public required string CpuType { get; set; }
public required int CpuCores { get; set; }
// RAM
public required double RamSize { get; set; }
// GPU
// Disks
}
}