//! KbCollection — metadata for a user-facing "collection" (知识库/合集).
//!
//! Collections are a thin veneer over the single KB store: a collection is a
//! reserved-prefix tag (`collection:<id>`) on the docs that belong to it, plus
//! this metadata row carrying the name/description/timestamps the desktop UI
//! needs. There is no per-collection store or embedder — see the project note
//! `kb-desktop-collections`.
use ;
/// Tag prefix that marks a doc's collection membership. A doc in collection
/// `col_ab12` carries the tag `collection:col_ab12`.
pub const COLLECTION_TAG_PREFIX: &str = "collection:";
/// The membership tag for a collection id.