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; } } }