增加视频评论 grpc 接口中图片相关字段 (#565)

* 更新 `契约` 相关 proto 目录结构

* 增加视频评论`grpc`接口中图片相关字段
This commit is contained in:
一心向晚 2022-12-31 18:37:17 +08:00 committed by GitHub
parent ffd414b230
commit befb9d3bd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -113,6 +113,20 @@ message Content {
map<string, int64> at_name_to_mid = 7; map<string, int64> at_name_to_mid = 7;
// //
RichText rich_text = 8; RichText rich_text = 8;
//
repeated Picture pictures = 9;
}
//
message Picture {
// URL
string img_src = 1;
//
double img_width = 2;
//
double img_height = 3;
// KB
double img_size = 4;
} }
// //