mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
10 lines
167 B
Protocol Buffer
10 lines
167 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
package archive;
|
||
|
|
|
||
|
|
message Info {
|
||
|
|
int64 aid = 1;
|
||
|
|
repeated int64 cids = 2;
|
||
|
|
int32 state = 3;
|
||
|
|
int64 mid = 4;
|
||
|
|
int32 attribute = 5;
|
||
|
|
}
|