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;
|
|
} |