This commit is contained in:
2025-08-02 20:18:00 +03:00
parent 1e8a0d8756
commit 191678c8b2
12 changed files with 1548 additions and 6 deletions
+18
View File
@@ -0,0 +1,18 @@
/* This software is licensed by the MIT License, see LICENSE file */
/* Copyright © 2024-2025 Gregory Lirent */
namespace WinIPC.Config
{
public class IPCServiceOptions
{
public string BasePipeName { get; set; } = "Global\\ProcessMonitoringService.UserAgent.Pipe";
}
#if WINIPC_UA_SERVER
public class AppConfig
{
public IPCServiceOptions IPCService { get; set; } = new IPCServiceOptions();
}
#endif
}