15 lines
221 B
Protocol Buffer
15 lines
221 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ItemInfo.proto";
|
|
|
|
message MiningCfgPass{
|
|
repeated ItemInfo Items = 1;
|
|
string Area = 2;
|
|
int32 Gem = 3;
|
|
int32 StarReward = 4;
|
|
}
|