EnumValueDescriptor.cs 189 B

123456789
  1. using System;
  2. namespace Google.ProtocolBuffers.Descriptors {
  3. public class EnumValueDescriptor {
  4. public int Number {
  5. get { throw new NotImplementedException(); }
  6. }
  7. }
  8. }