Skip to main content

metis_docs_tui/models/
database.rs

1#[derive(Debug, Clone)]
2pub struct DatabaseDocument {
3    pub id: String,
4    pub title: String,
5    pub document_type: metis_core::domain::documents::types::DocumentType,
6    pub filepath: String,
7    #[allow(dead_code)] // Used in filtering logic but not accessed directly in struct usage
8    pub archived: bool,
9}