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

11 lines
258 B
C#

namespace MxGateway.Server.Configuration;
public sealed class SessionOptions
{
public int DefaultCommandTimeoutSeconds { get; init; } = 30;
public int MaxSessions { get; init; } = 64;
public bool AllowMultipleEventSubscribers { get; init; }
}