12 lines
325 B
C#
12 lines
325 B
C#
using MxGateway.Contracts;
|
|
using MxGateway.Contracts.Proto;
|
|
|
|
namespace MxGateway.Worker.Ipc;
|
|
|
|
public static class WorkerContractInfo
|
|
{
|
|
public static uint SupportedProtocolVersion => GatewayContractInfo.WorkerProtocolVersion;
|
|
|
|
public static string WorkerEnvelopeDescriptorName => WorkerEnvelope.Descriptor.FullName;
|
|
}
|