9 lines
209 B
C#
9 lines
209 B
C#
using MxGateway.Contracts;
|
|
|
|
namespace MxGateway.Server.Configuration;
|
|
|
|
public sealed class ProtocolOptions
|
|
{
|
|
public uint WorkerProtocolVersion { get; init; } = GatewayContractInfo.WorkerProtocolVersion;
|
|
}
|