mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-09-13 10:38:10 +00:00
17 lines
296 B
Rust
17 lines
296 B
Rust
![]() |
use flowy_derive::ProtoBuf;
|
||
|
|
||
|
#[derive(ProtoBuf, Default, Debug, Clone, Eq, PartialEq)]
|
||
|
pub struct FolderInfo {
|
||
|
#[pb(index = 1)]
|
||
|
pub folder_id: String,
|
||
|
|
||
|
#[pb(index = 2)]
|
||
|
pub text: String,
|
||
|
|
||
|
#[pb(index = 3)]
|
||
|
pub rev_id: i64,
|
||
|
|
||
|
#[pb(index = 4)]
|
||
|
pub base_rev_id: i64,
|
||
|
}
|