mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
16 lines
244 B
Protocol Buffer
16 lines
244 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message ExportPayload {
|
|
string view_id = 1;
|
|
ExportType export_type = 2;
|
|
}
|
|
message ExportData {
|
|
string data = 1;
|
|
ExportType export_type = 2;
|
|
}
|
|
enum ExportType {
|
|
Text = 0;
|
|
Markdown = 1;
|
|
Link = 2;
|
|
}
|