Files
Moonlight/Moonlight/App/ApiClients/Daemon/Resources/CpuStats.cs
Marcel Baumgartner 3a47a67ec4 Moved daemon api client
2023-05-05 04:40:38 +02:00

8 lines
199 B
C#

namespace Moonlight.App.ApiClients.Daemon.Resources;
public class CpuStats
{
public double Usage { get; set; }
public int Cores { get; set; }
public string Model { get; set; } = "";
}