Files
RhythmicWallpaper/IpcLibrary/Services/ProcessHeartbeat.cs

17 lines
403 B
C#

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