aboutsummaryrefslogtreecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors/MappedType.cs
blob: 8d6c8ceddad85f0388ed695631faeccbc7f1fa29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 {
    Int32,
    Int64,
    UInt32,
    UInt64,
    Single,
    Double,
    Boolean,
    String,
    ByteString,
    Message,
    Enum
  }
}