syntax = "proto3"; option csharp_namespace = "GrpcService1"; package block; service Block { rpc GetBlock (BlockRequest) returns (BlockReply); } message BlockRequest { string in = 1; } message BlockReply { string out = 1; }