mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
13 lines
242 B
Protocol Buffer
13 lines
242 B
Protocol Buffer
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;
|
|
string ext_data = 7;
|
|
}
|