using ProtoBuf; namespace Grpc.Extension.BaseService.Model { /// /// MethodInvokeRQ /// [ProtoContract(ImplicitFields = ImplicitFields.AllPublic)] public class MethodInvokeRQ { /// /// GrpcMethod FullName /// [ProtoMember(1)] public string FullName { get; set; } /// /// RequestJson /// [ProtoMember(2)] public string RequestJson { get; set; } } }