using MxGateway.Contracts;
namespace MxGateway.Server.Configuration;
///
/// Configuration options for the worker protocol version.
///
public sealed class ProtocolOptions
{
///
/// Gets or sets the worker protocol version.
///
public uint WorkerProtocolVersion { get; init; } = GatewayContractInfo.WorkerProtocolVersion;
}