14 lines
201 B
Protocol Buffer
14 lines
201 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "QuestProgress.proto";
|
|
|
|
message GuideTask{
|
|
int32 Status = 1;
|
|
QuestProgress Progress = 2;
|
|
int32 Id = 3;
|
|
}
|