ServiceDescriptor.cs 404 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Google.ProtocolBuffers.DescriptorProtos;
  5. namespace Google.ProtocolBuffers.Descriptors {
  6. public class ServiceDescriptor : IndexedDescriptorBase<ServiceDescriptorProto, ServiceOptions> {
  7. public ServiceDescriptor(ServiceDescriptorProto proto, FileDescriptor file, int index)
  8. : base(proto, file, index) {
  9. }
  10. }
  11. }