mirror of
https://github.com/maierfelix/POGOserver.git
synced 2026-04-10 03:04:47 -05:00
16 lines
335 B
Protocol Buffer
Vendored
16 lines
335 B
Protocol Buffer
Vendored
syntax = "proto3";
|
|
package POGOProtos.Data.Logs;
|
|
|
|
import "POGOProtos/Inventory/Item/ItemData.proto";
|
|
|
|
message FortSearchLogEntry {
|
|
.POGOProtos.Data.Logs.FortSearchLogEntry.Result result = 1;
|
|
string fort_id = 2;
|
|
repeated .POGOProtos.Inventory.Item.ItemData items = 3;
|
|
int32 eggs = 4;
|
|
|
|
enum Result {
|
|
UNSET = 0;
|
|
SUCCESS = 1;
|
|
}
|
|
} |