18 lines
295 B
Protocol Buffer
18 lines
295 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ItemInfo.proto";
|
|
import "QuestProgress.proto";
|
|
|
|
message DailyTask{
|
|
int32 Status = 1;
|
|
bool UnLock = 2;
|
|
QuestProgress Progress = 3;
|
|
repeated ItemInfo Items = 4;
|
|
int32 Id = 5;
|
|
int32 Index = 6;
|
|
}
|