mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-23 09:01:21 +00:00
17 lines
268 B
Rust
17 lines
268 B
Rust
![]() |
use flowy_derive::ProtoBuf;
|
||
|
|
||
|
#[derive(Default, ProtoBuf)]
|
||
|
pub struct KeyValuePB {
|
||
|
#[pb(index = 1)]
|
||
|
pub key: String,
|
||
|
|
||
|
#[pb(index = 2, one_of)]
|
||
|
pub value: Option<String>,
|
||
|
}
|
||
|
|
||
|
#[derive(Default, ProtoBuf)]
|
||
|
pub struct KeyPB {
|
||
|
#[pb(index = 1)]
|
||
|
pub key: String,
|
||
|
}
|