mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
14 lines
250 B
Rust
14 lines
250 B
Rust
|
use flowy_derive::ProtoBuf;
|
||
|
|
||
|
#[derive(ProtoBuf, Debug, Default, Clone)]
|
||
|
pub struct DateQueryPB {
|
||
|
#[pb(index = 1)]
|
||
|
pub query: String,
|
||
|
}
|
||
|
|
||
|
#[derive(ProtoBuf, Debug, Default, Clone)]
|
||
|
pub struct DateResultPB {
|
||
|
#[pb(index = 1)]
|
||
|
pub date: String,
|
||
|
}
|