MethodInfoRQ.cs 242 B

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