blob: 267945145afb9930698d5fc2a279c334f8691c48 [file] [log] [blame]
csharptestd9c59e62010-11-04 19:36:28 -05001using System;
2
3namespace Google.ProtocolBuffers {
4
5 public interface IGeneratedExtensionLite {
6 int Number { get; }
7 object ContainingType { get; }
8 IMessageLite MessageDefaultInstance { get; }
9 }
10
11 public class GeneratedExtensionLite : IGeneratedExtensionLite {
12 public int Number {
13 get { throw new NotImplementedException(); }
14 }
15
16 public object ContainingType {
17 get { throw new NotImplementedException(); }
18 }
19
20 public IMessageLite MessageDefaultInstance {
21 get { throw new NotImplementedException(); }
22 }
23 }
24}