11 lines
258 B
C#
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; }
|
|
}
|