修改【readme】 添加【安卓端登录】appsec 添加大量【proto结构文件】
This commit is contained in:
@@ -1,8 +1,30 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package bilibili.metadata.restriction;
|
||||
|
||||
//模式类型
|
||||
enum ModeType{
|
||||
NORMAL = 0;
|
||||
TEENAGERS = 1;
|
||||
LESSONS = 2;
|
||||
}
|
||||
//正常
|
||||
NORMAL = 0;
|
||||
|
||||
//青少年模式
|
||||
TEENAGERS = 1;
|
||||
|
||||
//课堂模式
|
||||
LESSONS = 2;
|
||||
}
|
||||
|
||||
//限制条件
|
||||
message Restriction {
|
||||
//青少年模式开关状态
|
||||
bool teenagers_mode = 1;
|
||||
|
||||
//课堂模式开关状态
|
||||
bool lessons_mode = 2;
|
||||
|
||||
//模式类型
|
||||
ModeType mode = 3;
|
||||
|
||||
//app审核review状态
|
||||
bool review = 4;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user