mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 17:11:23 +00:00
23 lines
632 B
Protocol Buffer
23 lines
632 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
message ViewExtData {
|
||
|
ViewFilter filter = 1;
|
||
|
ViewGroup group = 2;
|
||
|
ViewSort sort = 3;
|
||
|
}
|
||
|
message ViewFilter {
|
||
|
oneof one_of_field_id { string field_id = 1; };
|
||
|
}
|
||
|
message ViewGroup {
|
||
|
oneof one_of_group_field_id { string group_field_id = 1; };
|
||
|
oneof one_of_sub_group_field_id { string sub_group_field_id = 2; };
|
||
|
}
|
||
|
message ViewSort {
|
||
|
oneof one_of_field_id { string field_id = 1; };
|
||
|
}
|
||
|
message GridInfoChangesetPayload {
|
||
|
string grid_id = 1;
|
||
|
oneof one_of_filter { ViewFilter filter = 2; };
|
||
|
oneof one_of_group { ViewGroup group = 3; };
|
||
|
oneof one_of_sort { ViewSort sort = 4; };
|
||
|
}
|