mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 09:01:21 +00:00
20 lines
388 B
Protocol Buffer
20 lines
388 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
message CreateViewRequest {
|
||
|
string app_id = 1;
|
||
|
string name = 2;
|
||
|
string desc = 3;
|
||
|
oneof one_of_thumbnail { string thumbnail = 4; };
|
||
|
ViewTypeIdentifier view_type = 5;
|
||
|
}
|
||
|
message View {
|
||
|
string id = 1;
|
||
|
string app_id = 2;
|
||
|
string name = 3;
|
||
|
string desc = 4;
|
||
|
ViewTypeIdentifier view_type = 5;
|
||
|
}
|
||
|
enum ViewTypeIdentifier {
|
||
|
Docs = 0;
|
||
|
}
|