mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-05-22 21:16:07 +08:00
18 lines
323 B
C#
18 lines
323 B
C#
using System.Diagnostics;
|
|
|
|
namespace RevokeMsgPatcher.MultiInstance
|
|
{
|
|
public class WechatProcess
|
|
{
|
|
public Process Proc { get; set; }
|
|
|
|
public bool MutexClosed { get; set; }
|
|
|
|
public WechatProcess(Process p)
|
|
{
|
|
Proc = p;
|
|
MutexClosed = false;
|
|
}
|
|
}
|
|
}
|