13 lines
164 B
Protocol Buffer
13 lines
164 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
option php_class_prefix = "Prefix";
|
||
|
|
|
||
|
|
message TestPrefix {
|
||
|
|
int32 a = 1;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Test prefix for reserved words.
|
||
|
|
message Empty {
|
||
|
|
int32 a = 1;
|
||
|
|
}
|