11 lines
181 B
Protocol Buffer
11 lines
181 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package tieba;
|
||
|
|
|
||
|
|
option java_package = "com.huanchengfly.tieba.post.api.models.protos";
|
||
|
|
|
||
|
|
message LiveCoverStatus {
|
||
|
|
int32 status_num = 1;
|
||
|
|
string status = 2;
|
||
|
|
}
|