TiebaLite/app/src/main/protos/UserPost/UserPostResponse.proto

14 lines
276 B
Protocol Buffer

syntax = "proto3";
package tieba.userPost;
option java_package = "com.huanchengfly.tieba.post.api.models.protos.userPost";
import "Error.proto";
import "UserPost/UserPostResponseData.proto";
message UserPostResponse {
Error error = 1;
UserPostResponseData data = 2;
}