InfoRQ.cs 239 B

123456789101112
  1. 
  2. using ProtoBuf;
  3. namespace Grpc.Extension.BaseService.Model
  4. {
  5. [ProtoContract(ImplicitFields = ImplicitFields.AllPublic)]
  6. public class InfoRQ
  7. {
  8. [ProtoMember(1)]
  9. public string MethodName { get; set; }
  10. }
  11. }