aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors/MappedType.cs
blob: 4ee2d341ce44754571692cd5806adf0b4411386b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
using System;
using System.Collections.Generic;
using System.Text;

namespace Google.ProtocolBuffers.Descriptors {
  /// <summary>
  /// Type as it's mapped onto a .NET type.
  /// </summary>
  public enum MappedType {
    Message
  }
}