using System.Collections.Generic;
|
|
namespace HDLCloudMonitor.InfoMonitor.ReqPack
|
{
|
public class ServerRunStatusReqPack
|
{
|
public int CPU { get; set; }
|
|
public int Memory { get; set; }
|
|
public string Internet { get; set; }
|
|
public List<ProgramRunStatus> ProgramRunStatus = new List<ProgramRunStatus>();
|
}
|
}
|