mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-16 22:58:30 -05:00
10 lines
153 B
Protocol Buffer
Vendored
10 lines
153 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data;
|
|
|
|
message DownloadUrlEntry {
|
|
string asset_id = 1;
|
|
string url = 2;
|
|
int32 size = 3;
|
|
fixed32 checksum = 4;
|
|
}
|