12 lines
210 B
Protocol Buffer
12 lines
210 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
|
||
|
|
package tieba;
|
||
|
|
|
||
|
|
option java_package = "com.huanchengfly.tieba.post.api.models.protos";
|
||
|
|
|
||
|
|
message ForumRuleStatus {
|
||
|
|
string title = 2;
|
||
|
|
int32 audit_status = 3;
|
||
|
|
int32 has_forum_rule = 4;
|
||
|
|
}
|