13 lines
242 B
Protocol Buffer
Raw Normal View History

2022-06-14 23:11:48 +08:00
syntax = "proto3";
import "view.proto";
message ViewInfo {
string id = 1;
string belong_to_id = 2;
string name = 3;
string desc = 4;
ViewDataType data_type = 5;
RepeatedView belongings = 6;
2022-06-15 17:24:46 +08:00
string ext_data = 7;
2022-06-14 23:11:48 +08:00
}