12345678910111213 |
- use flowy_derive::ProtoBuf;
- #[derive(PartialEq, ProtoBuf, Default, Debug, Clone)]
- pub struct TrashIdentifier {
- #[pb(index = 1)]
- pub id: String,
- }
- #[derive(PartialEq, ProtoBuf, Default, Debug, Clone)]
- pub struct TrashIdentifiers {
- #[pb(index = 1)]
- pub ids: Vec<String>,
- }
|