19 lines
474 B
C#
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
|
|||
|
}
|