winmr-api/Models/ProcessInfo.cs

17 lines
422 B
C#
Raw Normal View History

2025-06-30 18:15:07 +03:00
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; }
}
}