Files
sgard/proto/header.proto
2023-10-24 22:01:15 -07:00

13 lines
276 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;
}