blob: 855437bcc2798a801a9fcdf03ffb3f8a247eec1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.PPC.Shared.Performance
{
public class PerformancePackage
{
public int CPU { get; set; }
public int ApplicationCPU { get; set; }
public int RAM { get; set; }
public int ApplicationRAM { get; set; }
public int MaxRAM { get; set; }
public int Temperature { get; set; }
public int AvailableDiskSpace { get; set; }
public int DiskCapacity { get; set; }
public DateTime DateTime { get; set; }
}
}
|