15 lines
257 B
Protocol Buffer
15 lines
257 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
import "AdItem.proto";
|
|
|
|
message NotifyPlayroomMood{
|
|
int32 AllMood = 1;
|
|
map<int32, int32> Mood = 2;
|
|
map<int32, int32> Physiology = 3;
|
|
repeated AdItem AdItem = 4;
|
|
}
|