14 lines
203 B
Protocol Buffer
14 lines
203 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
message QuestProgress{
|
|
string Label = 1;
|
|
int32 Num = 2;
|
|
int32 Target = 3;
|
|
bool Status = 4;
|
|
int32 Param = 5;
|
|
}
|