mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-13 18:08:15 +08:00
16 lines
249 B
Protocol Buffer
16 lines
249 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message QueryRegionList {
|
|
bytes field0 = 5;
|
|
bytes field1 = 6;
|
|
bool field2 = 7;
|
|
repeated RegionSimpleInfo list = 2;
|
|
}
|
|
|
|
message RegionSimpleInfo {
|
|
string field0 = 1;
|
|
string field1 = 2;
|
|
string field2 = 3;
|
|
string url = 4;
|
|
}
|