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.
18 lines
448 B
18 lines
448 B
3 years ago
|
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,
|
||
|
}
|
||
|
}
|