Files
mxaccessgw/src/MxGateway.Worker/Ipc/WorkerContractInfo.cs
T
2026-04-26 16:37:23 -04:00

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;
}