15 lines
384 B
C#
15 lines
384 B
C#
using MxGateway.Contracts;
|
|
|
|
namespace MxGateway.Server.Configuration;
|
|
|
|
/// <summary>
|
|
/// Configuration options for the worker protocol version.
|
|
/// </summary>
|
|
public sealed class ProtocolOptions
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the worker protocol version.
|
|
/// </summary>
|
|
public uint WorkerProtocolVersion { get; init; } = GatewayContractInfo.WorkerProtocolVersion;
|
|
}
|