17 lines
296 B
Rust
Raw Normal View History

2022-01-21 21:41:24 +08:00
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,
}