14 lines
204 B
Protocol Buffer
14 lines
204 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "ItemInfo.proto";
|
|
|
|
message DailyWeek{
|
|
repeated ItemInfo Items = 1;
|
|
bool Status = 2;
|
|
int32 NeedActive = 3;
|
|
}
|