Initial commit

This commit is contained in:
Holger Börchers
2026-01-30 15:31:43 +01:00
commit 894fbbfa5a
22 changed files with 1701 additions and 0 deletions

16
CommIpc/IpcKinds.cs Normal file
View File

@@ -0,0 +1,16 @@
namespace CommIpc;
public static class IpcKinds
{
public const string Hello = "hello";
public const string Ping = "ping";
public const string Pong = "pong";
public const string StartWork = "startWork";
public const string CancelWork = "cancelWork";
public const string Log = "log";
public const string Progress = "progress";
public const string Result = "result";
public const string Error = "error";
}