mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-20 15:37:17 +00:00
18 lines
316 B
Protocol Buffer
18 lines
316 B
Protocol Buffer
![]() |
syntax = "proto3";
|
||
|
|
||
|
message CreateTrashParams {
|
||
|
string id = 1;
|
||
|
string name = 2;
|
||
|
int64 modified_time = 3;
|
||
|
int64 create_time = 4;
|
||
|
}
|
||
|
message Trash {
|
||
|
string id = 1;
|
||
|
string name = 2;
|
||
|
int64 modified_time = 3;
|
||
|
int64 create_time = 4;
|
||
|
}
|
||
|
message RepeatedTrash {
|
||
|
repeated Trash items = 1;
|
||
|
}
|