Moved wings api client to new location
This commit is contained in:
21
Moonlight/App/ApiClients/Wings/Resources/SystemStatus.cs
Normal file
21
Moonlight/App/ApiClients/Wings/Resources/SystemStatus.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Moonlight.App.ApiClients.Wings.Resources;
|
||||
|
||||
public class SystemStatus
|
||||
{
|
||||
[JsonProperty("architecture")]
|
||||
public string Architecture { get; set; }
|
||||
|
||||
[JsonProperty("cpu_count")]
|
||||
public long CpuCount { get; set; }
|
||||
|
||||
[JsonProperty("kernel_version")]
|
||||
public string KernelVersion { get; set; }
|
||||
|
||||
[JsonProperty("os")]
|
||||
public string Os { get; set; }
|
||||
|
||||
[JsonProperty("version")]
|
||||
public string Version { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user