10 lines
370 B
C#
10 lines
370 B
C#
namespace MxGateway.Server.Configuration;
|
|
|
|
public sealed record EffectiveGatewayConfiguration(
|
|
EffectiveAuthenticationConfiguration Authentication,
|
|
EffectiveWorkerConfiguration Worker,
|
|
EffectiveSessionConfiguration Sessions,
|
|
EffectiveEventConfiguration Events,
|
|
EffectiveDashboardConfiguration Dashboard,
|
|
EffectiveProtocolConfiguration Protocol);
|