11 lines
280 B
C#
11 lines
280 B
C#
using MxGateway.Contracts;
|
|
|
|
namespace MxGateway.Server.Configuration;
|
|
|
|
public sealed class ProtocolOptions
|
|
{
|
|
public uint WorkerProtocolVersion { get; init; } = GatewayContractInfo.WorkerProtocolVersion;
|
|
|
|
public int MaxGrpcMessageBytes { get; init; } = 16 * 1024 * 1024;
|
|
}
|