17 lines
422 B
C#
17 lines
422 B
C#
|
using System.Collections.Concurrent;
|
||
|
|
||
|
namespace WebmrAPI.Models
|
||
|
{
|
||
|
public class ProcessInfo
|
||
|
{
|
||
|
private readonly object _lock = new object();
|
||
|
|
||
|
public int ProcessId { get; set; }
|
||
|
public string ProcessName { get; set; } = string.Empty;
|
||
|
public string? BaseAddress { get; set; }
|
||
|
public long VirtualMemorySize { get; set; }
|
||
|
public string? CommandLine { get; set; }
|
||
|
|
||
|
|
||
|
}
|
||
|
}
|