aboutsummaryrefslogblamecommitdiff
path: root/csharp/ProtocolBuffers/Descriptors/FieldType.cs
blob: d54ded53cce7db6e28afaf3a5aabe0c294d329e7 (plain) (tree)






















                                              
namespace Google.ProtocolBuffers.Descriptors {
  public enum FieldType {
    Double,
    Float,
    Int64,
    UInt64,
    Int32,
    Fixed64,
    Fixed32,
    Bool,
    String,
    Group,
    Message,
    Bytes,
    UInt32,
    SFixed32,
    SFixed64,
    SInt32,
    SInt64,
    Enum
  }
}