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

14 lines
276 B
Protocol Buffer
Raw Normal View History

2023-10-07 15:55:25 +08:00
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;
}