34 lines
632 B
C#
34 lines
632 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Syski.Data
|
|||
|
{
|
|||
|
public class SystemRunningProcesses
|
|||
|
{
|
|||
|
|
|||
|
public Guid SystemId { get; set; }
|
|||
|
|
|||
|
public System System { get; set; }
|
|||
|
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public long MemSize { get; set; }
|
|||
|
|
|||
|
public long KernelTime { get; set; }
|
|||
|
|
|||
|
public string Path { get; set; }
|
|||
|
|
|||
|
public int Threads { get; set; }
|
|||
|
|
|||
|
public long UpTime { get; set; }
|
|||
|
|
|||
|
public int ParentId { get; set; }
|
|||
|
|
|||
|
public DateTime CollectionDateTime { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|