mirror of
https://github.com/zoffline/zwift-offline.git
synced 2026-08-03 09:21:33 -07:00
13 lines
306 B
Protocol Buffer
13 lines
306 B
Protocol Buffer
syntax = "proto2";
|
|
message ZFileProto {
|
|
required uint64 id = 1;
|
|
required string folder = 2;
|
|
required string filename = 3;
|
|
optional string f4 = 4; //NetworkClientImpl::generateZFileGzip: empty
|
|
required uint64 timestamp = 5;
|
|
}
|
|
|
|
message ZFilesProto {
|
|
repeated ZFileProto zfiles = 1;
|
|
}
|