10 lines
166 B
Protocol Buffer
10 lines
166 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
package someproto;
|
||
|
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
|
||
|
message Person {
|
||
|
string name = 1;
|
||
|
google.protobuf.Timestamp last_updated = 2;
|
||
|
}
|