13 lines
190 B
Protocol Buffer
13 lines
190 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
message PlayroomDressInfo{
|
|
int32 Id = 1;
|
|
int64 EndTime = 2;
|
|
int64 AddTime = 3;
|
|
string Label = 4;
|
|
}
|