Files
RhythmicWallpaper/IpcLibrary/Core/ProcessInfo.cs

19 lines
542 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IpcLibrary.Core {
/// <summary>
/// 进程信息
/// </summary>
public class ProcessInfo {
public string ProcessId { get; set; }
public string ProcessName { get; set; }
public ProcessStatus Status { get; set; }
public DateTime LastHeartbeat { get; set; }
public Dictionary<string, object> Metadata { get; set; } = new Dictionary<string, object>();
}
}