13 lines
184 B
Protocol Buffer
13 lines
184 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ItemInfo.proto";
|
|
|
|
message MiningCfgJackpot{
|
|
int32 Prob = 1;
|
|
repeated ItemInfo Items = 2;
|
|
}
|