TiebaLite/app/src/main/protos/ActPost.proto

15 lines
267 B
Protocol Buffer

syntax = "proto3";
package tieba;
option java_package = "com.huanchengfly.tieba.post.api.models.protos";
import "ActHot.proto";
import "LinkInfo.proto";
message ActPost {
repeated ActHot act_hot = 1;
string list_head = 2;
repeated LinkInfo link_info = 3;
}