Switched to new daemon communication

This commit is contained in:
Marcel Baumgartner
2023-06-07 02:46:26 +02:00
parent 732fbdd46a
commit 0f8946fe27
20 changed files with 197 additions and 167 deletions

View File

@@ -0,0 +1,7 @@
namespace Moonlight.App.ApiClients.Daemon.Resources;
public class CpuMetrics
{
public string CpuModel { get; set; } = "";
public double CpuUsage { get; set; }
}