mirror of
https://github.com/protobufjs/protobuf.js.git
synced 2025-12-08 20:58:55 +00:00
13 lines
188 B
Protocol Buffer
13 lines
188 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message OptionalFields {
|
|
message SubMessage {
|
|
string a = 1;
|
|
}
|
|
|
|
optional SubMessage a = 1;
|
|
optional string b = 2;
|
|
optional uint32 c = 3;
|
|
uint32 d = 4;
|
|
}
|