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,10 @@
namespace Moonlight.App.ApiClients.Daemon.Resources;
public class Container
{
public string Name { get; set; } = "";
public long Memory { get; set; }
public double Cpu { get; set; }
public long NetworkIn { get; set; }
public long NetworkOut { get; set; }
}