FieldDescriptor.cs 325 B

1234567891011121314151617
  1. 
  2. namespace Google.ProtocolBuffers.Descriptors {
  3. public class FieldDescriptor {
  4. public bool IsRequired {
  5. get;
  6. set;
  7. }
  8. public MappedType MappedType { get; set; }
  9. public bool IsRepeated { get; set; }
  10. public FieldType FieldType { get; set; }
  11. public int FieldNumber { get; set; }
  12. }
  13. }