You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
448 B
17 lines
448 B
namespace ProtoBuf.Meta |
|
{ |
|
/// <summary> |
|
/// Indiate the variant of the protobuf .proto DSL syntax to use |
|
/// </summary> |
|
public enum ProtoSyntax |
|
{ |
|
/// <summary> |
|
/// https://developers.google.com/protocol-buffers/docs/proto |
|
/// </summary> |
|
Proto2 = 0, |
|
/// <summary> |
|
/// https://developers.google.com/protocol-buffers/docs/proto3 |
|
/// </summary> |
|
Proto3 = 1, |
|
} |
|
}
|
|
|