mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 03:04:47 -05:00
12 lines
197 B
Protocol Buffer
Vendored
12 lines
197 B
Protocol Buffer
Vendored
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;
|
|
}
|