12 lines
174 B
Protocol Buffer
Raw Normal View History

2021-07-22 22:26:38 +08:00
syntax = "proto3";
message CreateDocRequest {
string view_id = 1;
string name = 2;
}
message Doc {
string id = 1;
string name = 2;
string view_id = 3;
}