9 lines
129 B
Protocol Buffer
9 lines
129 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
message RegionSimpleInfo {
|
||
|
string name = 1;
|
||
|
string title = 2;
|
||
|
string type = 3;
|
||
|
string dispatchUrl = 4;
|
||
|
}
|