20 lines
386 B
Protocol Buffer
20 lines
386 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package ahoj;
|
|
|
|
message Example {
|
|
int32 f_int32 = 1;
|
|
int64 f_int64 = 2;
|
|
uint32 f_uint32 = 3;
|
|
uint64 f_uint64 = 4;
|
|
sint32 f_sint32 = 5;
|
|
sint64 f_sint64 = 6;
|
|
bool f_bool = 7;
|
|
fixed32 f_fixed32 = 8;
|
|
fixed64 f_fixed64 = 9;
|
|
sfixed32 f_sfixed32 = 10;
|
|
sfixed64 f_sfixed64 = 11;
|
|
float f_float = 12;
|
|
double f_double = 13;
|
|
}
|