mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-19 14:20:11 +00:00
12 lines
174 B
Protocol Buffer
12 lines
174 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
message CreateDocRequest {
|
||
|
string view_id = 1;
|
||
|
string name = 2;
|
||
|
}
|
||
|
message Doc {
|
||
|
string id = 1;
|
||
|
string name = 2;
|
||
|
string view_id = 3;
|
||
|
}
|