MethodInvokeRQ.cs 524 B

1234567891011121314151617181920212223
  1. using ProtoBuf;
  2. namespace Grpc.Extension.BaseService.Model
  3. {
  4. /// <summary>
  5. /// MethodInvokeRQ
  6. /// </summary>
  7. [ProtoContract(ImplicitFields = ImplicitFields.AllPublic)]
  8. public class MethodInvokeRQ
  9. {
  10. /// <summary>
  11. /// GrpcMethod FullName
  12. /// </summary>
  13. [ProtoMember(1)]
  14. public string FullName { get; set; }
  15. /// <summary>
  16. /// RequestJson
  17. /// </summary>
  18. [ProtoMember(2)]
  19. public string RequestJson { get; set; }
  20. }
  21. }