aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/GeneratedExtensionLite.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ProtocolBuffers/GeneratedExtensionLite.cs')
-rw-r--r--src/ProtocolBuffers/GeneratedExtensionLite.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ProtocolBuffers/GeneratedExtensionLite.cs b/src/ProtocolBuffers/GeneratedExtensionLite.cs
new file mode 100644
index 00000000..26794514
--- /dev/null
+++ b/src/ProtocolBuffers/GeneratedExtensionLite.cs
@@ -0,0 +1,24 @@
+using System;
+
+namespace Google.ProtocolBuffers {
+
+ public interface IGeneratedExtensionLite {
+ int Number { get; }
+ object ContainingType { get; }
+ IMessageLite MessageDefaultInstance { get; }
+ }
+
+ public class GeneratedExtensionLite : IGeneratedExtensionLite {
+ public int Number {
+ get { throw new NotImplementedException(); }
+ }
+
+ public object ContainingType {
+ get { throw new NotImplementedException(); }
+ }
+
+ public IMessageLite MessageDefaultInstance {
+ get { throw new NotImplementedException(); }
+ }
+ }
+} \ No newline at end of file