mirror of
https://github.com/lennart-k/rustical.git
synced 2025-12-14 11:42:25 +00:00
8 lines
160 B
Rust
8 lines
160 B
Rust
use ical::parser::ical::component::IcalJournal;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub struct JournalObject {
|
|
pub journal: IcalJournal,
|
|
pub(crate) ics: String,
|
|
}
|