Showing Rds Server info
This commit is contained in:
parent
244a600d83
commit
8faf2a7139
17 changed files with 1503 additions and 19 deletions
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace WebsitePanel.Providers.RemoteDesktopServices
|
||||
{
|
||||
public class RdsServerInfo
|
||||
{
|
||||
public string Status { get; set; }
|
||||
public int NumberOfCores { get; set; }
|
||||
public int MaxClockSpeed { get; set; }
|
||||
public int LoadPercentage { get; set; }
|
||||
public double MemoryAllocatedMb { get; set; }
|
||||
public double FreeMemoryMb { get; set; }
|
||||
public RdsServerDriveInfo[] Drives { get; set; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue