Files
mxaccessgw/src/MxGateway.Server/Configuration/EffectiveWorkerConfiguration.cs
T
2026-04-26 16:11:30 -04:00

12 lines
338 B
C#

namespace MxGateway.Server.Configuration;
public sealed record EffectiveWorkerConfiguration(
string ExecutablePath,
string? WorkingDirectory,
string RequiredArchitecture,
int StartupTimeoutSeconds,
int ShutdownTimeoutSeconds,
int HeartbeatIntervalSeconds,
int HeartbeatGraceSeconds,
int MaxMessageBytes);