13 lines
263 B
Protocol Buffer
13 lines
263 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package repeated_duration_timestamp;
|
||
|
|
||
|
import "google/protobuf/duration.proto";
|
||
|
import "google/protobuf/timestamp.proto";
|
||
|
|
||
|
|
||
|
message Test {
|
||
|
repeated google.protobuf.Timestamp times = 1;
|
||
|
repeated google.protobuf.Duration durations = 2;
|
||
|
}
|