mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
12 lines
131 B
Protocol Buffer
12 lines
131 B
Protocol Buffer
|
|
syntax = "proto3";
|
||
|
|
package proto;
|
||
|
|
|
||
|
|
enum FOO
|
||
|
|
{
|
||
|
|
X = 0;
|
||
|
|
};
|
||
|
|
|
||
|
|
message TestItem{
|
||
|
|
string Name = 1;
|
||
|
|
int32 Age = 2;
|
||
|
|
}
|