12 lines
162 B
Protocol Buffer
12 lines
162 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
message ReqAdminBan{
|
|
int64 Uid = 1;
|
|
int64 Time = 2;
|
|
string Reason = 3;
|
|
}
|