winipc-ua/Config/AppConfig.cs
2025-08-02 20:18:00 +03:00

19 lines
474 B
C#

/* 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
}