13 lines
206 B
Protocol Buffer
13 lines
206 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ahoj;
|
|
|
|
message Example {
|
|
int32 f_int32 = 1;
|
|
uint32 f_uint32 = 3;
|
|
sint32 f_sint32 = 5;
|
|
bool f_bool = 7;
|
|
fixed32 f_fixed32 = 8;
|
|
sfixed32 f_sfixed32 = 10;
|
|
}
|