25 lines
377 B
Protocol Buffer
25 lines
377 B
Protocol Buffer
|
|
// [START declaration]
|
|
syntax = "proto3";
|
|
package messages.raw_track;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
// [END declaration]
|
|
|
|
|
|
// [START messages]
|
|
message RawTrack {
|
|
uint32 trackNo = 1;
|
|
|
|
message DISEntityID {
|
|
uint32 site = 1;
|
|
uint32 application = 2;
|
|
uint32 entity = 3;
|
|
}
|
|
|
|
DISEntityID EntityID = 2;
|
|
|
|
google.protobuf.Timestamp timestamp = 3;
|
|
}
|
|
|