mirror of
https://github.com/SocialSisterYi/bilibili-API-collect.git
synced 2025-02-24 17:50:12 +08:00
23 lines
293 B
Protocol Buffer
23 lines
293 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package bilibili.app.dynamic.common;
|
||
|
|
||
|
|
||
|
//
|
||
|
message ItemWHRatio {
|
||
|
//
|
||
|
int32 ratio = 1;
|
||
|
//
|
||
|
int32 width = 2;
|
||
|
//
|
||
|
int32 height = 3;
|
||
|
}
|
||
|
|
||
|
//
|
||
|
enum WHRatio {
|
||
|
W_H_RATIO_1_1 = 0;
|
||
|
W_H_RATIO_16_9 = 1;
|
||
|
W_H_RATIO_3_4 = 2;
|
||
|
W_H_RATIO_CUSTOM = 3;
|
||
|
}
|