mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-06-12 19:11:33 -07:00
13 lines
261 B
Protocol Buffer
13 lines
261 B
Protocol Buffer
syntax = "proto2";
|
|
message ZFileProto {
|
|
optional uint64 id = 1;
|
|
required string folder = 2;
|
|
required string filename = 3;
|
|
optional bytes file = 4;
|
|
optional uint64 timestamp = 5;
|
|
}
|
|
|
|
message ZFilesProto {
|
|
repeated ZFileProto zfiles = 1;
|
|
}
|