hxb
2020-09-23 2921da3e4ba99f0df28a172d47daa69e375431bc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>();
    }
}