26 lines
421 B
Protocol Buffer
Raw Normal View History

2021-10-13 23:11:45 +08:00
syntax = "proto3";
2021-12-31 10:32:25 +08:00
message RepeatedTrashId {
repeated TrashId items = 1;
bool delete_all = 2;
}
2021-12-31 10:32:25 +08:00
message TrashId {
2021-10-13 23:11:45 +08:00
string id = 1;
TrashType ty = 2;
2021-10-13 23:11:45 +08:00
}
message Trash {
string id = 1;
string name = 2;
int64 modified_time = 3;
int64 create_time = 4;
TrashType ty = 5;
2021-10-13 23:11:45 +08:00
}
message RepeatedTrash {
repeated Trash items = 1;
}
enum TrashType {
Unknown = 0;
View = 1;
2021-10-30 17:19:50 +08:00
App = 2;
}