using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IpcLibrary.Services { /// /// 进程心跳信息 /// internal class ProcessHeartbeat { public string ProcessId { get; set; } public DateTime LastHeartbeat { get; set; } public bool IsActive { get; set; } } }