16 lines
242 B
Protocol Buffer
16 lines
242 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
message ActivityInfo{
|
|
int32 Id = 1;
|
|
int32 Type = 2;
|
|
int32 StartTime = 3;
|
|
int32 EndTime = 4;
|
|
int32 Status = 5;
|
|
string Title = 6;
|
|
int32 Red = 7;
|
|
}
|