aboutsummaryrefslogtreecommitdiff
path: root/src/ProtocolBuffers/GeneratedExtensionLite.cs
blob: 9b3cf504fe822c371fd12760d1a74e760cf3b410 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
using System;

namespace Google.ProtocolBuffers {

  public interface IGeneratedExtensionLite {
    int Number { get; }
    object ContainingType { get; }
    IMessageLite MessageDefaultInstance { get; }
  }
}