Files
sgard/proto/header.proto
2023-10-16 21:57:57 -07:00

12 lines
257 B
Protocol Buffer

syntax = 'proto3';
package sgardpb;
import "google/protobuf/timestamp.proto";
// Header defines common metadata for messages in sgard.
message Header {
uint32 version = 1;
google.protobuf.Timestamp created = 2;
google.protobuf.Timestamp updated = 3;
}