backend/pkg/proto/brahma/murders/script/script.proto

28 lines
719 B
Protocol Buffer
Raw Normal View History

2022-01-19 19:39:04 +08:00
syntax = "proto3";
option go_package = "git.icechen.cn/monorepo/backend/pkg/proto/brahma/murders/script";
package script;
message Script {
string script_name = 1;
string script_intro = 2;
repeated string script_tag = 3;
double script_score = 4;
sint64 group_duration = 5;
string script_cover_url = 6;
string script_text_context = 7;
double script_plot_score = 8;
repeated string script_image_content = 9;
sint64 script_male_player = 10;
sint64 script_female_player = 11;
string script_difficult_degree = 12;
sint64 script_player_limit = 13;
string uuid = 14;
double script_complex_score = 15;
string qid = 16;
sint64 is_del = 17;
}
message Scripts {
repeated Script scripts = 1;
}