15 lines
204 B
Protocol Buffer
15 lines
204 B
Protocol Buffer
|
|
// [START declaration]
|
|
syntax = "proto3";
|
|
package messages.stringData;
|
|
|
|
// import "google/protobuf/timestamp.proto";
|
|
// [END declaration]
|
|
|
|
|
|
// [START messages]
|
|
message StringData {
|
|
string data = 1;
|
|
}
|
|
|