mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-03-21 17:34:27 -05:00
12 lines
197 B
Protocol Buffer
12 lines
197 B
Protocol Buffer
syntax = "proto3";
|
|
package POGOProtos.Data;
|
|
|
|
message AssetDigestEntry {
|
|
string asset_id = 1;
|
|
string bundle_name = 2;
|
|
int64 version = 3;
|
|
fixed32 checksum = 4;
|
|
int32 size = 5;
|
|
bytes key = 6;
|
|
}
|