AppFlowy/frontend/rust-lib/flowy-text-block/resources/proto/entities.proto

16 lines
244 B
Protocol Buffer
Raw Normal View History

2021-11-09 08:00:09 +00:00
syntax = "proto3";
2022-02-24 13:49:18 +00:00
message ExportPayload {
2022-02-25 14:27:44 +00:00
string view_id = 1;
2021-11-09 08:00:09 +00:00
ExportType export_type = 2;
}
message ExportData {
string data = 1;
ExportType export_type = 2;
2021-11-09 08:00:09 +00:00
}
enum ExportType {
Text = 0;
Markdown = 1;
Link = 2;
2021-11-09 08:00:09 +00:00
}