aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/ProtocolBuffers/Descriptors.cs')
-rw-r--r--csharp/ProtocolBuffers/Descriptors.cs39
1 files changed, 39 insertions, 0 deletions
diff --git a/csharp/ProtocolBuffers/Descriptors.cs b/csharp/ProtocolBuffers/Descriptors.cs
new file mode 100644
index 00000000..ae09ee5a
--- /dev/null
+++ b/csharp/ProtocolBuffers/Descriptors.cs
@@ -0,0 +1,39 @@
+
+using System;
+
+namespace Google.ProtocolBuffers {
+ public class Descriptors {
+ public class Descriptor {
+ }
+ public class FieldDescriptor {
+ public enum Type {
+ Double,
+ Float,
+ Int64,
+ UInt64,
+ Int32,
+ Fixed64,
+ Fixed32,
+ Bool,
+ String,
+ Group,
+ Message,
+ Bytes,
+ UInt32,
+ SFixed32,
+ SFixed64,
+ SInt32,
+ SInt64,
+ Enum
+ }
+ }
+
+ public class EnumValueDescriptor
+ {
+ public int Number
+ {
+ get { throw new NotImplementedException(); }
+ }
+ }
+ }
+}